mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-27 17:28:41 +00:00
6 lines
189 B
Bash
Executable file
6 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))
|