9 lines
120 B
Batchfile
Executable File
9 lines
120 B
Batchfile
Executable File
#!/bin/bash
|
|
|
|
pushd $(dirname "$0")
|
|
|
|
./vendor/premake5 --file=Build.lua gmake2
|
|
|
|
# Go back to the original directory
|
|
popd
|