mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
7 lines
189 B
Bash
Executable File
7 lines
189 B
Bash
Executable File
#! /bin/bash -e
|
|
|
|
cmake -B build -DCMAKE_BUILD_TYPE=Debug \
|
|
-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
|
|
-DBUILD_SERVER=TRUE ${CMAKE_FLAGS}
|
|
cmake --build build --parallel $(($(nproc) + 1))
|