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