Add build scripts

This commit is contained in:
Lily Rose 2025-02-16 15:31:24 +11:00
parent c2dba75511
commit 247a066e6f
3 changed files with 6 additions and 0 deletions

2
build.sh Normal file
View file

@ -0,0 +1,2 @@
#!/bin/sh
cmake --build build

2
configure-msys2.sh Normal file
View file

@ -0,0 +1,2 @@
#!/bin/sh
cmake -G "MinGW Makefiles" -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_MAKE_PROGRAM=mingw32-make -S . -B build

2
configure.sh Normal file
View file

@ -0,0 +1,2 @@
#!/bin/sh
cmake -S . -B build