saving alternate build method. About to go back to regular visual studio build, but may pursue this approach in the future

This commit is contained in:
2025-09-09 09:44:15 -05:00
parent 7c4f089f2e
commit 2d38f74371
26 changed files with 40 additions and 659 deletions

5
export_compdb.sh Normal file
View File

@@ -0,0 +1,5 @@
srcs=src/*
echo [ > compile_commands.json
find src -iname "*.cpp" -exec sh -c 'echo { \"directory\": \"$(cygpath -m $(pwd))\", \"command\": \"cl "$(cygpath -m {})" -I inc -I ext/glm -I ../ext/glfw/include -Od -std:c++20 -Fo\", \"file\": \"$(cygpath -m {})\" }, >> compile_commands.json' \;
echo ] >> compile_commands.json