diff options
| author | Adam <adammegarules1@gmail.com> | 2026-08-14 18:15:35 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-08-14 18:15:35 +0200 |
| commit | 8c36dfcde8856692de2bc2456a7bb8ce00f3de56 (patch) | |
| tree | 0b7560253d9c4bde59f8e2666da60e04339672ed /scripts/build_debug.bash | |
| parent | a052243c902928593b2caa25e65a27cf4a46787e (diff) | |
removing github ci and creating scripts for helping 'run ci at home'
Diffstat (limited to 'scripts/build_debug.bash')
| -rwxr-xr-x | scripts/build_debug.bash | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/build_debug.bash b/scripts/build_debug.bash new file mode 100755 index 0000000..0e7422d --- /dev/null +++ b/scripts/build_debug.bash @@ -0,0 +1,10 @@ +#!/usr/bin/sh + +BUILD_MODE="Debug" +BUILD_DIR="build" + +# Setup +cmake -B build -S . -DCMAKE_BUILD_TYPE=$BUILD_MODE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON + +# Build +cmake --build $BUILD_DIR |
