Files
seer/src/build
Ionut Ciuperca e759dd4b7f Small correction to build instructions
In the src/build dir the instructions say `make seer`, probably left over from the time the executable was called that.
2022-10-01 11:15:40 +01:00
..

Notes for building Seer with cmake.

% cd seer/src/build
% cmake -DCMAKE_BUILD_TYPE=Debug ..     # Debug release -g.
% cmake -DCMAKE_BUILD_TYPE=Release ..   # Optimized release -O.
% cmake -DCMAKE_CXX_FLAGS=-Wall ..      # With all compile warnings turned on.


% make clean                            # Clean files.
% make seergdb                          # Build Seer.
% sudo make install                     # Install it.

% cmake --build . --config Release
% sudo cmake --install .