mirror of
https://github.com/dragonfireclient/dragonfireclient.git
synced 2024-12-13 12:04:00 -05:00
8 lines
174 B
Bash
Executable file
8 lines
174 B
Bash
Executable file
#! /bin/bash -e
|
|
|
|
mkdir cmakebuild
|
|
cd cmakebuild
|
|
cmake -DCMAKE_BUILD_TYPE=Debug \
|
|
-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
|
|
-DBUILD_SERVER=TRUE ${CMAKE_FLAGS} ..
|
|
make -j2
|