Building the packages
This will create the binary packages you can use to install BibExplorer on your system:
mkdir build
cmake -version
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-O2"
cmake --build . -j 2 --config Release
cmake --install .
cpack .
On windows, replace -O2
with /O2
. You might need sudo
for this last command.