aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlimportscanner/qmlimportscanner.pro
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-01-24 09:51:20 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-01-31 08:44:36 +0000
commitdc0a7d7021b52adfea1e128557ff35c003a49431 (patch)
treed9e738f82dc16d49459b94627aaaed4aca1605f8 /tools/qmlimportscanner/qmlimportscanner.pro
parent65d3a7e15307844a9afcc8fd6cefc8c88079450c (diff)
Tools: Add product name, version and description to the .pro files
This information will then be visible in Windows explorer. Change-Id: I9d2f936584308394b4e3246d57bed44083b3cbca Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Robin Burchell <robin.burchell@crimson.no>
Diffstat (limited to 'tools/qmlimportscanner/qmlimportscanner.pro')
-rw-r--r--tools/qmlimportscanner/qmlimportscanner.pro9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/qmlimportscanner/qmlimportscanner.pro b/tools/qmlimportscanner/qmlimportscanner.pro
index c8e458c6ae..363424f948 100644
--- a/tools/qmlimportscanner/qmlimportscanner.pro
+++ b/tools/qmlimportscanner/qmlimportscanner.pro
@@ -5,4 +5,13 @@ DEFINES += QT_NO_CAST_TO_ASCII QT_NO_CAST_FROM_ASCII
SOURCES += main.cpp
+QMAKE_TARGET_PRODUCT = qmlimportscanner
+QMAKE_TARGET_DESCRIPTION = Tool to scan projects for QML imports
+
+win32 {
+ VERSION = $${QT_VERSION}.0
+} else {
+ VERSION = $${QT_VERSION}
+}
+
load(qt_tool)