syntax trees for Schematika parser
  • C++ 95.6%
  • CMake 4.4%
Find a file
2023-09-26 01:42:18 -04:00
.github/workflows github: apt-get catch2 dependency 2023-09-25 18:16:20 -04:00
cmake reflect: initial implementation 2023-09-25 17:49:42 -04:00
include/reflect reflect: initial implementation 2023-09-25 17:49:42 -04:00
src/reflect build: remove submodules (moved to reflect-sm project) 2023-09-26 01:27:13 -04:00
utest reflect: initial implementation 2023-09-25 17:49:42 -04:00
.gitignore + .gitignore 2023-09-25 17:56:57 -04:00
CMakeLists.txt build: + CMAKE_INSTALL_RPATH + remov externalproject_add() calls 2023-09-26 01:32:50 -04:00
FILESYSTEM reflect: initial implementation 2023-09-25 17:49:42 -04:00
README.md + build/install notes 2023-09-25 17:55:04 -04:00

reflection library

build + install

$ cd reflect
$ mkdir build
$ cd build
$ 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_PREFIX_PATH=${INSTALL_PREFIX} -DCODE_COVERAGE=ON -DCMAKE_BUILD_TYPE=Debug ..