diff options
Diffstat (limited to 'app/v3_c/scripts')
-rwxr-xr-x | app/v3_c/scripts/compil.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/v3_c/scripts/compil.sh b/app/v3_c/scripts/compil.sh new file mode 100755 index 0000000..2c0f374 --- /dev/null +++ b/app/v3_c/scripts/compil.sh @@ -0,0 +1,6 @@ +#!/bin/bash -e + +BASEPATH="$(dirname $0)/.." + +( cd "$BASEPATH/bin" && cmake ../ && make ) + |