mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
13 lines
373 B
Bash
Executable File
13 lines
373 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 .. -DCMAKE_BUILD_TYPE="Release"
|
|
|
|
# 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 $1
|