syntax trees for Schematika parser
  • C++ 95.6%
  • CMake 4.4%
Find a file
2023-09-27 18:00:16 -04:00
.github/workflows build: adopt xo-cmake dependency 2023-09-27 09:39:54 -04:00
cmake reflect: retire superseded .cmake files 2023-09-27 16:33:05 -04:00
include/reflect reflect: initial implementation 2023-09-25 17:49:42 -04:00
src/reflect build: cosmetic: remove dead comments 2023-09-27 16:38:01 -04:00
utest reflect: build: streamline 2023-09-27 16:54:48 -04:00
.gitignore + .gitignore 2023-09-25 17:56:57 -04:00
CMakeLists.txt reflect: build: xo-macros defaults CMAKE_MODULE_PATH 2023-09-27 18:00:16 -04:00
FILESYSTEM reflect: initial implementation 2023-09-25 17:49:42 -04:00
README.md build: adopt xo-cmake dependency 2023-09-27 09:39:54 -04:00

reflection library

build + install

$ cd reflect
$ mkdir build
$ cd build
$ 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 refcnt
$ 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 ..