aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlmin/qmlmin.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/qmlmin/qmlmin.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/qmlmin/qmlmin.pro')
-rw-r--r--tools/qmlmin/qmlmin.pro9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/qmlmin/qmlmin.pro b/tools/qmlmin/qmlmin.pro
index 2cbf196863..f5248e1b69 100644
--- a/tools/qmlmin/qmlmin.pro
+++ b/tools/qmlmin/qmlmin.pro
@@ -2,4 +2,13 @@ option(host_build)
QT = core qmldevtools-private
SOURCES += main.cpp
+QMAKE_TARGET_PRODUCT = qmlmin
+QMAKE_TARGET_DESCRIPTION = QML/JS minifier
+
+win32 {
+ VERSION = $${QT_VERSION}.0
+} else {
+ VERSION = $${QT_VERSION}
+}
+
load(qt_tool)