initial upload

This commit is contained in:
2024-09-12 18:48:58 +08:00
parent ee4e8ecfe9
commit fe029b814e
31 changed files with 407351 additions and 36 deletions

9
config.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if [[ ${1} == "configure" && ! -d "build/" ]]; then
mkdir build && cd build && rm -rf * && cmake ..
elif [[ ${1} == "configure" ]]; then
cd build && rm -rf * && cmake ..
elif [[ ${1} == "build" ]]; then
cd build && make
fi