添加脚本

This commit is contained in:
朱毅骏 2021-09-22 16:04:06 +08:00
parent 02f6a41de8
commit 07b54f6909
2 changed files with 41 additions and 0 deletions

30
multi-thread/.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# bin
bin
src/cmake-build-debug-mingw

11
multi-thread/make_all.sh Normal file
View File

@ -0,0 +1,11 @@
rm -rf bin
mkdir build
cd build
cmake ../src/
make
cd ../
mv build/bin ./
rm -rf build/