initial upload

This commit is contained in:
2021-07-18 09:00:14 +08:00
parent b50b51e70f
commit 726b96a029
35 changed files with 1625686 additions and 0 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