aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-07-30 16:28:53 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-08-26 14:40:14 +0200
commit00932b74bd14c4c25a8ab2220a14eb1746170ec5 (patch)
treebe1ceee9528f29645be499682fedd1f8934076dd /tools
parente30633c77294dc1b987ccf11654f1501fed43f03 (diff)
CMake: Regenerate load(qt_app) projects
Use the new qt_internal_add_app function. Task-number: QTBUG-85757 Change-Id: I455443a29511c809d2ad87073b2ae685fdbf27ae Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmleasing/CMakeLists.txt11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/qmleasing/CMakeLists.txt b/tools/qmleasing/CMakeLists.txt
index a057e4c50c..e93995326b 100644
--- a/tools/qmleasing/CMakeLists.txt
+++ b/tools/qmleasing/CMakeLists.txt
@@ -1,11 +1,10 @@
# Generated from qmleasing.pro.
#####################################################################
-## qmleasing Binary:
+## qmleasing App:
#####################################################################
-qt_add_executable(qmleasing
- GUI
+qt_internal_add_app(qmleasing
SOURCES
import.ui
main.cpp
@@ -36,6 +35,6 @@ qt_add_resource(qmleasing "resources"
${resources_resource_files}
)
-
-#### Keys ignored in scope 1:.:.:qmleasing.pro:<TRUE>:
-# QMAKE_TARGET_DESCRIPTION = "QML" "Easing" "Curve" "Editor"
+set_target_properties(qmleasing PROPERTIES
+ QT_TARGET_DESCRIPTION "QML Easing Curve Editor"
+)