Initial commit

This commit is contained in:
Oscar Krause
2025-04-11 13:22:23 +02:00
commit 4bce6412ca
8 changed files with 981 additions and 0 deletions

11
build.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
if [ "$1" == "clean" ] || [ "$1" == "rebuild" ]; then
rm -rf build gridd-unlock-patcher
fi
if [ "$1" == "rebuild" ] || [ "$1" != "clean" ]; then
mkdir -p build; cd build
cmake -DCMAKE_BUILD_TYPE=Release .. && make -j$(nproc) && mv gridd-unlock-patcher ..
cd ..
fi