-
Notifications
You must be signed in to change notification settings - Fork 4
Setup
TPCC is written according to the C++ 17 standard. It is tested regularly with g++ and clang++. Other compilers may work as well.
TPCC is a header-only library. This means that you can simply download it from Github and put the contents of the include
directory somewhere where your compiler finds it.
If you want to make sure that it compiles on your computer, you can use CMake to compile and run the tests. To this order, let $SOURCE
be the root of your TPCC directory and $BUILD
be the path of the build directory which you must create beforehand. Then, run
cd $BUILD
cmake $SOURCE
make
make test
The project is documented inline with doxygen. Afer CMake configuration, generate the documentation locally with
make doxygen
You can use QT Creator or any other IDE which reads CMake configuration files to edit TPCC and run the tests.