TUM PSE Molecular Dynamics project by Jan Hampe, Alex Hocks, and Johannes Riemenschneider
Install xerces-c: sudo apt install libxerces-c-dev
Install gcc: sudo apt install gcc
(at least version 11 is required)
Install cmake: sudo apt install cmake
Install make: sudo apt install make
Create build directory: mkdir build
Change directory into build folder: cd build
Run cmake: cmake .. -B .
Run make: make
Build with: cmake .. -B .
Create Doxygen Documentation: make doc_doxygen
Disable creating Doxygen target: cmake -DBUILD_DOC=OFF .. -B .
Run simulation with <input-file>: ./MolSim <input-file> [-et <end-time>] [-dt <timeslice length>]
After this the tests can be built (also in the build directory) by calling: make test
To enable the DEBUG flag, use: make CXX_FLAGS+="-DDEBUG -std=c++20" test