From 07b54f6909c9d7cac8a4d5752bfb309100e4297d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E6=AF=85=E9=AA=8F?= Date: Wed, 22 Sep 2021 16:04:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- multi-thread/.gitignore | 30 ++++++++++++++++++++++++++++++ multi-thread/make_all.sh | 11 +++++++++++ 2 files changed, 41 insertions(+) create mode 100644 multi-thread/.gitignore create mode 100644 multi-thread/make_all.sh diff --git a/multi-thread/.gitignore b/multi-thread/.gitignore new file mode 100644 index 0000000..83dc00a --- /dev/null +++ b/multi-thread/.gitignore @@ -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 diff --git a/multi-thread/make_all.sh b/multi-thread/make_all.sh new file mode 100644 index 0000000..3bb23ef --- /dev/null +++ b/multi-thread/make_all.sh @@ -0,0 +1,11 @@ +rm -rf bin + +mkdir build +cd build + +cmake ../src/ +make + +cd ../ +mv build/bin ./ +rm -rf build/