mirror of
https://github.com/minetest/minetest.git
synced 2024-11-13 03:03:44 +01:00
9 lines
180 B
Bash
Executable File
9 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))
|