diff options
| author | LLLL Colonq <llll@colonq> | 2026-07-21 13:53:20 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-07-21 13:53:20 -0400 |
| commit | 3ec03ba57474aa4320cb7901980b55706adbc111 (patch) | |
| tree | 97fcf8d1825cd4bdda65c4b516853dfda60f3610 /2026/submissions/threecoff/clennis/scripts/build-native.sh | |
| parent | 47c0d930736bb5247a7f7ba05c7d41e33038102a (diff) | |
Update
Diffstat (limited to '2026/submissions/threecoff/clennis/scripts/build-native.sh')
| -rwxr-xr-x | 2026/submissions/threecoff/clennis/scripts/build-native.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2026/submissions/threecoff/clennis/scripts/build-native.sh b/2026/submissions/threecoff/clennis/scripts/build-native.sh new file mode 100755 index 0000000..8a0b297 --- /dev/null +++ b/2026/submissions/threecoff/clennis/scripts/build-native.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +# Configure + build the native desktop binary at ./build-native/tennis +set -euo pipefail + +ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +cd "$ROOT" + +cmake -B build-native -DCMAKE_BUILD_TYPE=Debug +cmake --build build-native -j"$(nproc)" + +echo +echo ">> Built build-native/tennis — run it with: ./build-native/tennis" |
