Files
cpp_manual_clangd_example/run.sh
T
2023-10-04 19:06:51 -07:00

16 lines
178 B
Bash
Executable File

#!/bin/sh
rm -rf build/
mkdir -p build/
cd build
# Build the project
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
make
cp ./compile_commands.json ../
./HelloWorld