aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
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 {