master repository for XO: cooperating set of C++ libraries for deterministic simulation
  • C++ 87.5%
  • C 6.2%
  • CMake 3.4%
  • Nix 1%
  • Objective-C++ 0.6%
  • Other 1.2%
Find a file
2023-09-26 16:01:32 -04:00
.github/workflows github: experiment, take 2 2023-09-26 16:01:32 -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 github: more weird build experiments 2023-09-26 15:55:03 -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 github: more weird build experiments 2023-09-26 15:55:03 -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 ..