You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
204 B
6 lines
204 B
5 years ago
|
#!/bin/bash
|
||
|
if [ -f bin/minetest ]; then
|
||
|
make clean
|
||
|
fi
|
||
|
cmake . -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LEVELDB=1 -DENABLE_REDIS=1 -DRUN_IN_PLACE=1 && make -j$(grep -c processor /proc/cpuinfo)
|