Files
imdraw/configure.sh

19 lines
298 B
Bash
Raw Permalink Normal View History

2025-01-05 02:53:58 +00:00
#!/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