9 lines
126 B
Bash
Executable File
9 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export LD_LIBRARY_PATH="/usr/local/lib"
|
|
cmake CMakeLists.txt
|
|
make -j 5
|
|
|
|
if [ "$1" == "play" ]; then
|
|
./game
|
|
fi |