DarkflameServer/build.sh
2022-10-25 15:32:46 -05:00

11 lines
305 B
Bash
Executable File

# Create the build directory, preserving it if it already exists
mkdir -p build
cd build
# Run cmake to generate make files
cmake ..
# To build utilizing multiple cores, append `-j` and the amount of cores to utilize, for example `cmake --build . --config Release -j8'
cmake --build . --config Release