Add files generated by tests to gitignore
Change-Id: I1fac4df1e00cbe37c0c9ea69562dffc1eb4d5111 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
This commit is contained in:
parent
eff84a13af
commit
ee771dda2e
|
@ -78,8 +78,6 @@ bin/qml*
|
||||||
bin/qttracereplay*
|
bin/qttracereplay*
|
||||||
configure.cache
|
configure.cache
|
||||||
config.status
|
config.status
|
||||||
mkspecs/default
|
|
||||||
mkspecs/qconfig.pri
|
|
||||||
moc_*.cpp
|
moc_*.cpp
|
||||||
qmake/qmake.exe
|
qmake/qmake.exe
|
||||||
qmake/Makefile.bak
|
qmake/Makefile.bak
|
||||||
|
@ -87,6 +85,11 @@ src/corelib/global/qconfig.cpp
|
||||||
src/corelib/global/qconfig.h
|
src/corelib/global/qconfig.h
|
||||||
src/corelib/global/qconfig.h.qmake
|
src/corelib/global/qconfig.h.qmake
|
||||||
ui_*.h
|
ui_*.h
|
||||||
|
tests/auto/cmake/build
|
||||||
|
tests/auto/installed_cmake/build
|
||||||
|
tests/auto/qml/qqmlapplicationengine/testapp/testapp
|
||||||
|
tests/auto/qml/temp.qml
|
||||||
|
tests/auto/qmltest/*.png
|
||||||
tests/auto/qprocess/test*/*.exe
|
tests/auto/qprocess/test*/*.exe
|
||||||
tests/auto/qtcpsocket/stressTest/*.exe
|
tests/auto/qtcpsocket/stressTest/*.exe
|
||||||
tests/auto/qprocess/fileWriterProcess/*.exe
|
tests/auto/qprocess/fileWriterProcess/*.exe
|
||||||
|
@ -178,6 +181,7 @@ config.tests/unix/sse2/sse2
|
||||||
# Directories to ignore
|
# Directories to ignore
|
||||||
# ---------------------
|
# ---------------------
|
||||||
|
|
||||||
|
mkspecs/*
|
||||||
debug
|
debug
|
||||||
imports/*
|
imports/*
|
||||||
examples/tools/plugandpaint/plugins
|
examples/tools/plugandpaint/plugins
|
||||||
|
@ -252,17 +256,21 @@ src/xml/lib/
|
||||||
*.map
|
*.map
|
||||||
work
|
work
|
||||||
|
|
||||||
#generated version headers
|
# Generated version headers
|
||||||
src/qmltest/qtquicktestversion.h
|
src/qmltest/qtquicktestversion.h
|
||||||
src/qtquick1/qtquick1version.h
|
src/qtquick1/qtquick1version.h
|
||||||
src/qmldevtools/qtqmldevtoolsversion.h
|
src/qmldevtools/qtqmldevtoolsversion.h
|
||||||
src/quick/qtquickversion.h
|
src/quick/qtquickversion.h
|
||||||
src/qml/qtqmlversion.h
|
src/qml/qtqmlversion.h
|
||||||
|
|
||||||
|
# Discard !tst_*.*
|
||||||
|
tests/auto/headersclean/tst_headersclean.cpp
|
||||||
tests/auto/*/*.o
|
tests/auto/*/*.o
|
||||||
tests/auto/*/*.moc
|
tests/auto/*/*.moc
|
||||||
tests/auto/*/*/*.o
|
tests/auto/*/*/*.o
|
||||||
tests/auto/*/*/*.moc
|
tests/auto/*/*/*.moc
|
||||||
|
tests/auto/*/*/*/*.o
|
||||||
|
tests/auto/*/*/*/*.moc
|
||||||
|
|
||||||
# Generated static plugin import sources
|
# Generated static plugin import sources
|
||||||
*_plugin_import.cpp
|
*_plugin_import.cpp
|
||||||
|
|
Loading…
Reference in New Issue