summaryrefslogtreecommitdiff
path: root/2026/submissions/threecoff/clennis/scripts/build-native.sh
diff options
context:
space:
mode:
Diffstat (limited to '2026/submissions/threecoff/clennis/scripts/build-native.sh')
-rwxr-xr-x2026/submissions/threecoff/clennis/scripts/build-native.sh12
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"