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