mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
7b0b923d80
Ignore static libraries, cmake products, generated code and unit test binaries. Some extra care must be taken not to ignore more than intended when ignoring the *_UnitTests. There is no way to directly express a path-neutral "only ignore files with this pattern, not directories" in a single gitignore pattern, but it can be expressed as "ignore everything containing this pattern except directories".
35 lines
404 B
Plaintext
35 lines
404 B
Plaintext
# editor backup files
|
|
*~
|
|
.\#*
|
|
|
|
# compiler output
|
|
*.o
|
|
*.a
|
|
|
|
# Octave plugins (compiled)
|
|
*.oct
|
|
|
|
# precompiled headers
|
|
*.gch
|
|
|
|
# Qt preprocessor
|
|
moc_*.cxx
|
|
qrc_*.cxx
|
|
|
|
# CMake
|
|
Makefile
|
|
CMakeFiles/
|
|
CMakeCache.txt
|
|
/Generated/
|
|
*.qrc.depends
|
|
cmake_install.cmake
|
|
CPack*.cmake
|
|
CTest*.cmake
|
|
|
|
#Unit test binaries
|
|
*_UnitTests
|
|
!*_UnitTests/
|
|
|
|
# Target program
|
|
/ApplicationCode/ResInsight
|