This will add a CMake script to configure and compile the game. It follow the same as the Blunted2 one, with the addition of searching for that library (thus, it should be used after the make install of Blunted2).
The build process will be:
mkdir buildcd buildcmake ..make -j8
(change 8 to the number of threads will use on compilation)
This will add a CMake script to configure and compile the game. It follow the same as the Blunted2 one, with the addition of searching for that library (thus, it should be used after the make install of Blunted2).
The build process will be:
mkdir build
cd build
cmake ..
make -j8
(change 8 to the number of threads will use on compilation)