Installing Scistats from Source
This will install Scistats on your system:
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-O2" -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF
cmake --build . --parallel 2 --config Release
cmake --install .
- Replace
--parallel 2with--parallel <number of cores in your machine> - On Windows, replace
-O2with/O2 - On Linux, you might need
sudofor this last command