CBOX is a library of components based on the Reactor model
We use cmake for building projects:
# cmake -B build
# cd build
# make -j4
# sudo make install
You can build with debug or tests, or samples with additional params:
cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_INSTALL_PREFIX=./install \
-DCMAKE_ENABLE_SAMPLES=OFF \
-DCMAKE_ENABLE_TESTS=ON
Field description:
If you enabled tests, first you need install googletest, and then you can run test with command:
# cd build
# ctest
