adding in basic helloworld

This commit is contained in:
talksik
2023-09-11 17:22:27 -07:00
commit e009fbaa3f
5 changed files with 71 additions and 0 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
rm -rf build/
mkdir -p build/
cd build
# Build the project
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
make
./HelloWorld