xo-umbrella2/xo-ordinaltree
Roland Conybeare 82017cd7a0
All checks were successful
cmake-docker / cmake-build (clang, clang++) (push) Successful in 25m31s
cmake-docker / cmake-build (gcc, g++) (push) Successful in 25m59s
CI / smoke-test (push) Successful in 48m38s
xo-ordinaltree: clang-format include order [TIDY]
2026-08-02 15:45:04 -04:00
..
.github/workflows git subrepo clone git@github.com:Rconybea/xo-ordinaltree.git xo-ordinaltree 2026-06-06 22:16:36 -04:00
cmake git subrepo clone git@github.com:Rconybea/xo-ordinaltree.git xo-ordinaltree 2026-06-06 22:16:36 -04:00
include/xo/ordinaltree xo-ordinaltree: clang-format include order [TIDY] 2026-08-02 15:45:04 -04:00
utest xo-ordinaltree: clang-format include order [TIDY] 2026-08-02 15:45:04 -04:00
.gitignore git subrepo clone git@github.com:Rconybea/xo-ordinaltree.git xo-ordinaltree 2026-06-06 22:16:36 -04:00
.gitrepo git subrepo push xo-ordinaltree 2026-07-19 17:38:28 -04:00
CMakeLists.txt git subrepo clone git@github.com:Rconybea/xo-ordinaltree.git xo-ordinaltree 2026-06-06 22:16:36 -04:00
README.md git subrepo clone git@github.com:Rconybea/xo-ordinaltree.git xo-ordinaltree 2026-06-06 22:16:36 -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