aboutsummaryrefslogtreecommitdiffstats
path: root/qbs
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-01-09 16:44:30 +0100
committerEike Ziller <eike.ziller@qt.io>2018-01-10 08:45:59 +0000
commit699dd2c426cb43060e0036f923927cc82c57ddef (patch)
tree0b51570cce3de63ecd320b1aca59223e1cf3984a /qbs
parent8d523f1900d0701763ce7addf13fc5dfaabbc528 (diff)
Make IDE name and ids configurable at build time
Make it unnecessary to hack app_version.h.in for that. Change-Id: Ibc3bf332916ab9f293b6782d3b5a40078dbd7bcb Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'qbs')
-rw-r--r--qbs/modules/qtc/qtc.qbs4
1 files changed, 4 insertions, 0 deletions
diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs
index 60816c0eb0..4b4796e63a 100644
--- a/qbs/modules/qtc/qtc.qbs
+++ b/qbs/modules/qtc/qtc.qbs
@@ -19,6 +19,10 @@ Module {
property string qtcreator_copyright_year: '2017'
+ property string ide_display_name: 'Qt Creator'
+ property string ide_id: 'qtcreator'
+ property string ide_cased_id: 'QtCreator'
+
property string libDirName: "lib"
property string ide_app_path: qbs.targetOS.contains("macos") ? "" : "bin"
property string ide_app_target: qbs.targetOS.contains("macos") ? "Qt Creator" : "qtcreator"