Files
cpp_crow_server/run.sh
T
2023-09-11 17:22:27 -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