adding in build setup and linking external library

This commit is contained in:
talksik
2023-07-23 06:24:57 -07:00
parent baca03677e
commit c35add8c40
4 changed files with 53 additions and 0 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
echo "Building project | making build folder, and going into it..."
rm -rf build
mkdir build
cd build
echo "Running cmake with build type Debug."
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
echo "====================="
echo "Running make..."
echo "====================="
make