ResInsight/.gitignore
Torstein Hegge 7b0b923d80 gitignore: Ignore more build system products
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".
2013-04-02 19:01:09 +02:00

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