arena allocator + incremental garbage collector
  • C++ 98.4%
  • CMake 1.6%
Find a file
2024-03-29 14:47:57 -04:00
.github/workflows github: typo: loal -> local 2023-10-04 15:56:40 -04:00
cmake build: suppress bootstrap message in submodule build 2024-03-29 14:33:41 -04:00
include/xo/ordinaltree build: update include paths to include xo/ 2023-10-06 19:22:04 -04:00
utest minor: unused decl nit 2024-03-29 14:47:57 -04:00
.gitignore build: streamline CMAKE_MODULE_PATH interaction 2024-03-15 19:28:45 -04:00
CMakeLists.txt build: streamline CMAKE_MODULE_PATH interaction 2024-03-15 19:28:45 -04:00
README.md mention dependencies in README 2023-10-17 15:02:57 -04:00

ordinal tree library

Getting Started

build + install dependencies

build + install

$ cd xo-ordinaltree
$ mkdir build
$ cd build
$ INSTALL_PREFIX=/usr/local  # or wherever you prefer
$ cmake -DCMAKE_MODULE_PATH=${INSTALL_PREFIX}/share/cmake -DCMAKE_PREFIX_PATH=${INSTALL_PREFIX} -DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} ..
$ make
$ make install

build for unit test coverage

$ cd xo-ordinaltree
$ mkdir build-ccov
$ cd build-ccov
$ cmake -DCMAKE_MODULE_PATH=${INSTALL_PREFIX}/share/cmake  -DCMAKE_PREFIX_PATH=${INSTALL_PREFIX} -DCODE_COVERAGE=ON -DCMAKE_BUILD_TYPE=Debug ..

LSP support

$ cd xo-ordinaltree
$ ln -s build/compile_commands.json  # lsp will look for compile_commands.json in the root of the source tree