diff options
author | KoynovStas <skojnov@yandex.ru> | 2017-05-21 11:06:01 +0400 |
---|---|---|
committer | KoynovStas <skojnov@yandex.ru> | 2017-05-21 11:06:01 +0400 |
commit | 91ae97083c2032785e6c53b1b5093d1bef2c3a29 (patch) | |
tree | 1ed2c33c412436aa67d4711a2295be80be20db83 | |
parent | ab1e4933925c57887712b08c4e31904be3a2a06f (diff) | |
download | gitignore-91ae97083c2032785e6c53b1b5093d1bef2c3a29.tar.gz gitignore-91ae97083c2032785e6c53b1b5093d1bef2c3a29.zip |
add object_script to Qt.gitignore
For template rules (modern style) in Qt project file,
this file is autogenerated by qmake.
Example old style (pro file):
SOURCES += src/1.cpp \
src/2.cpp
Example new style, uses template rules (pro file):
SOURCES += src/*.cpp
qmake auto generate files with list of objects
object_script.*.Debug
object_script.*.Release
-rw-r--r-- | Qt.gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Qt.gitignore b/Qt.gitignore index 4174403c..5fa47c5a 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -12,6 +12,8 @@ # Qt-es +object_script.*.Release +object_script.*.Debug *_plugin_import.cpp /.qmake.cache /.qmake.stash |