diff options
Diffstat (limited to 'src/build.sh')
-rwxr-xr-x | src/build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/build.sh b/src/build.sh new file mode 100755 index 0000000..e987bc1 --- /dev/null +++ b/src/build.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# creates the build dir and runs CMake with Ninja +cmake -B build -G Ninja + +# build the project +cmake --build build
\ No newline at end of file |