Updated CmakeList

This commit is contained in:
2026-03-15 19:39:35 +01:00
commit e152bf93b3
20 changed files with 566 additions and 0 deletions

8
generate.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "Generating Makefiles..."
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
echo "Generating compile_commands.json for clangd..."
ln -sf build/compile_commands.json compile_commands.json
echo "Done!"
echo "To compile run:\n cmake --build build -j":