12 lines
121 B
Bash
Executable File
12 lines
121 B
Bash
Executable File
# set cwd to script directory
|
|
cd "${0%/*}"
|
|
|
|
./create_projects.sh
|
|
|
|
echo building...
|
|
cd premake/
|
|
make -j4
|
|
|
|
echo done.
|
|
exit
|