This commit is contained in:
bumpsoo 2026-02-03 09:44:08 +00:00
commit b887f15662
21 changed files with 1038 additions and 0 deletions

18
setup.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
set -e
echo "Starting project setup..."
if [ ! -d "build" ]; then
mkdir build
echo "Created build directory."
fi
cd build
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
echo "CMake configuration complete."
cd ..
ln -sf build/compile_commands.json compile_commands.json