Installation¶
The software has been designed to have no requirements to build beyond a modern C++ compiler and (currently) CMake, and should be fairly straightforward to build on any modern platform.
Dependencies¶
Cmake
C++ 14 compatible compiler
Git
Platforms¶
Linux¶
Clone the repository
Initialise git submodules (git submodule update --init)
Create and navigate into a build directory (mkdir build && cd build)
Run CMake (cmake .. && cmake --build)
Run the executable of your choice (e.g, ./dcm_3body)
Mac¶
Clone the repository
Initialise git submodules (git submodule update --init)
Create and navigate into a build directory (mkdir build && cd build)
Run CMake (cmake .. && cmake --build)
Run the executable of your choice (e.g, ./dcm_3body)
Windows¶
WIP