init
This commit is contained in:
commit
b887f15662
21 changed files with 1038 additions and 0 deletions
18
setup.sh
Executable file
18
setup.sh
Executable 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue