feat: scaffold C++ template with tooling helpers

This commit is contained in:
2025-09-23 13:34:55 +08:00
parent 3e9993775d
commit 237e7c3138
9 changed files with 197 additions and 0 deletions

9
utils/build.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="${SCRIPT_DIR}/.."
cd "${PROJECT_ROOT}"
make "$@"