mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02: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))
|