aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2023-06-26 17:17:49 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2023-06-26 15:35:27 +0000
commit5bb49d4308868294910a972da2d88b8ef223d924 (patch)
treeee033b2a4c9d342aaafcad511b15e505619920cc /src/app
parentac32f790f38eb91412183d5ced8caebdfd721a23 (diff)
qbs build: Consider IDE_SETTINGSVARIANT in app_version_header
Amends ac32f790f38eb91412183d5ced8caebdfd721a23. Change-Id: Ifeb571daeb3006d6bea7c46a52e3f9526f33c3d0 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/app_version_header.qbs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/app_version_header.qbs b/src/app/app_version_header.qbs
index 4109f55f84..dace34d4ed 100644
--- a/src/app/app_version_header.qbs
+++ b/src/app/app_version_header.qbs
@@ -55,6 +55,7 @@ Product {
content = content.replace("${IDE_REVISION_URL}", "");
content = content.replace("${PROJECT_USER_FILE_EXTENSION}",
product.moduleProperty("qtc", "ide_user_file_extension"));
+ content = content.replace("${IDE_SETTINGSVARIANT}", "QtProject");
file = new TextFile(output.filePath, TextFile.WriteOnly);
file.truncate();
file.write(content);