1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-22 17:18:39 +00:00
luanti/util/ci/build.sh
2022-04-08 14:55:21 +01:00

8 lines
180 B
Bash
Executable file

#! /bin/bash -e
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug \
-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
-DBUILD_SERVER=TRUE ${CMAKE_FLAGS} ..
make -j$(($(nproc) + 1))