schematika arithmetic with facets + multi-argument runtime polymorphism
  • C++ 94.2%
  • CMake 5.8%
Find a file
2023-10-06 18:22:44 -04:00
.github/workflows github: typo: loal -> local 2023-10-04 15:56:40 -04:00
cmake rename xo-tree -> xo-ordinaltree 2023-10-04 13:28:47 -04:00
include/xo/ordinaltree rename xo-tree -> xo-ordinaltree 2023-10-04 13:28:47 -04:00
utest randomgen: inserted xo/ into include path 2023-10-06 18:21:58 -04:00
.gitignore .gitignore: + .ccache 2023-10-06 18:22:27 -04:00
CMakeLists.txt rename xo-tree -> xo-ordinaltree 2023-10-04 13:28:47 -04:00
README.md + README.md 2023-10-06 18:22:44 -04:00

ordinal tree library

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