Files
cpp_helloworld/build.sh
T
2023-09-07 09:33:54 -07:00

13 lines
145 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
./HelloWorld