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/