mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-07 16:48:40 +00:00
9 lines
175 B
Bash
9 lines
175 B
Bash
|
#! /bin/bash -eu
|
||
|
|
||
|
mkdir cmakebuild
|
||
|
cd cmakebuild
|
||
|
cmake -DCMAKE_BUILD_TYPE=Debug \
|
||
|
-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
|
||
|
-DBUILD_SERVER=TRUE ${CMAKE_FLAGS} ..
|
||
|
make -j2
|