Files
tbb/.gitignore
T
Lanyi ae1c31a52a Ignore generated .def file (#59)
Currently `src/tbb/win32-gcc-tbb-export.def` will be generated (by copying from linux `.def` file) because it did not exist.
https://github.com/wjakob/tbb/blob/20357d83871e4cb93b2c724fe0c337cd999fd14f/CMakeLists.txt#L209

That will cause git to flag an untracked file, this proposed change will stop git from showing the untracked changes.

Probably it would be better to copy this file to the build directory instead of source directory, but I didn't looked too deep into the cmakelists file. If that happens, then we can revert this .gitignore back.
2020-07-06 00:42:26 +02:00

102 lines
1.3 KiB
Plaintext

# Ignore the debug and release directories created with Makefile builds #
#########################################################################
build/*_debug/
build/*_release/
# Compiled source #
###################
*.com
*.class
*.dll
*.lib
*.pdb
*.exe
*.o
*.so
*.so.1
*.so.2
*.dylib
*.a
*.obj
*.pyc
*.orig
*.raw
*.sample
*.slo
*.swp
*.config
*.la
*.lai
*.lo
*.nhdr
*.nii.gz
*.nrrd
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.tgz
*.zip
# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# IDE generated files #
######################
/.ninja_deps
/.ninja_log
/build.ninja
/rules.ninja
*~
.emacs.desktop
# Build system generated files #
################################
CMakeCache.txt
CMakeFiles/
*.cmake
libtbb.dylib
libtbb.so
libtbb_static.a
libtbbmalloc.dylib
libtbbmalloc.so
libtbbmalloc_proxy.dylib
libtbbmalloc_proxy.so
libtbbmalloc_proxy_static.a
libtbbmalloc_static.a
tbb.def
tbbmalloc.def
version_string.ver
src/tbb/win32-gcc-tbb-export.def
# Other #
#########
.clang_complete
.idea
.svn
crash*
*.tmp