Link Search Menu Expand Document

Install from Source

This will 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 .

On windows, replace -O2 with /O2. You might need sudo for this last command.