DarkflameServer/build.sh
EmosewaMC ce03feb11a f
2023-01-14 18:18:25 -08:00

14 lines
346 B
Bash
Executable File

# Error if any command fails
set -e
# 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 -j4