mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
12 lines
192 B
Bash
12 lines
192 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make
|
||
|
|
||
|
echo 'You may now launch mega-glest from this folder like this:'
|
||
|
echo '../mk/linux/glest.bin --ini-path=../mk/linux/ --data-path=../mk/linux/'
|
||
|
|
||
|
|