-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Use ITK .gitignore patterns for module
- Loading branch information
1 parent
26dde92
commit 1c46dc7
Showing
1 changed file
with
48 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,48 @@ | ||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
# Do not add ExternalData module staging files | ||
.ExternalData* | ||
|
||
# back-up files | ||
*~ | ||
*.bak | ||
# vim swp files | ||
*.swp | ||
## Ignore files that are used for auto_completion with clang | ||
*.clang_complete | ||
## YouCompleteMe vim plugin configuration file | ||
.ycm_extra_conf.py | ||
|
||
|
||
# KWStyle hook output | ||
*.kws | ||
|
||
# compiled python files | ||
*.pyc | ||
|
||
# Binary directory ignore patterns | ||
BUILD*/ | ||
build*/ | ||
|
||
# qtcreator | ||
CMakeLists.txt.user* | ||
|
||
# kdevelop | ||
*.kdev* | ||
.kdev* | ||
|
||
# back-up files when conflicts occur | ||
*.orig | ||
|
||
# Clion editor internal project information | ||
.idea | ||
|
||
# Visual Studio | ||
.vs | ||
|
||
# Mac System File | ||
.DS_Store | ||
|
||
# Ignore testing temporary files | ||
Testing/Temporary/ | ||
|
||
# CMake user presets | ||
CMakeUserPresets.json |