aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-11-12 15:43:17 -0800
committerJake Petroules <jake.petroules@qt.io>2017-11-13 09:16:13 +0000
commitbd5c05f33e40fa6089cfd3525991088fe02ec438 (patch)
treeb99bbc840718acb1170ccd20c811a6d247e1154c /examples
parent2e4d332924e17225d08ac11891828e6fefc3529b (diff)
Rename CoreUtils in install-bundle example
That name conflicts with an Apple system framework. Change-Id: I9d8c1f3fdff813341e433578e4e48aac607a1e39 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/install-bundle/install-bundle.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/install-bundle/install-bundle.qbs b/examples/install-bundle/install-bundle.qbs
index 7ec4e8f78..ac5a6c255 100644
--- a/examples/install-bundle/install-bundle.qbs
+++ b/examples/install-bundle/install-bundle.qbs
@@ -3,7 +3,7 @@ import qbs.FileInfo
Project {
CppApplication {
- Depends { name: "coreutils" }
+ Depends { name: "windowutils" }
Depends { name: "ib"; condition: qbs.targetOS.contains("darwin") }
Depends { name: "Qt"; submodules: ["core", "gui", "widgets"] }
@@ -32,9 +32,9 @@ Project {
DynamicLibrary {
Depends { name: "cpp" }
- name: "coreutils"
+ name: "windowutils"
property bool isBundle: qbs.targetOS.contains("darwin") && bundle.isBundle
- targetName: isBundle ? "CoreUtils" : "coreutils"
+ targetName: isBundle ? "WindowUtils" : "windowutils"
files: ["coreutils.cpp", "coreutils.h"]
Group {