initial commit

This commit is contained in:
2025-01-05 02:53:58 +00:00
commit 77fc0bd9ff
10 changed files with 15189 additions and 0 deletions

18
configure.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
set -eu
script_path="$(realpath $0)"
root="$(dirname $script_path)"
pushd "$(dirname "$0")" > /dev/null
cat > .clangd <<- EOF
CompileFlags:
Add:
- -I$root/vendor/cimgui
- -I$root/vendor/imgui
- -I$root/vendor/sokol
- -I$root/vendor/sokol/util
EOF
popd > /dev/null