Specialised software is required in order to compile this source code. If one or more prerequisites are not installed, the final executable may not build or lack certain features.
Download CMake from the website or via package manager.
- Arch Linux:
sudo pacman -Syu cmake
- Create a new, empty 'build' folder.
- Open CMake by clicking its icon or entering
cmake-guiin a command prompt. - Set the source code directory to this repositories root folder.
- Set the build directory to the 'build' folder created in step 1.
- Click on the
Configurebutton to configure project settings. - When done configuring, click
Generate, thenOpen Project. - Build the project with the IDE of your choice.
- Open up a terminal and enter the command
cmake --install .in the build directory created in the building process. Read the Building section for more info on this directory.
By default, this software installs to /usr/local. To change the install location, set the CMAKE_INSTALL_PREFIX variable via the CMake GUI or by entering the command cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr . and rebuilding the project.