Skip to content

Commit

Permalink
Ignore generated .def file (wjakob#59)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lanyizi authored Jul 5, 2020
1 parent 56b5ea9 commit ae1c31a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ libtbbmalloc_static.a
tbb.def
tbbmalloc.def
version_string.ver
src/tbb/win32-gcc-tbb-export.def

# Other #
#########
Expand Down

0 comments on commit ae1c31a

Please sign in to comment.