Qbs: Include latest change in qbs build

Amends 45c018f560.

Change-Id: I161bae375e422a352ba702c1030498511bbe5d81
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Christian Stenger
2022-02-17 06:41:27 +01:00
parent 59e90a439e
commit 85976b3caf

View File

@@ -43,6 +43,8 @@ QtcProduct {
project.sharedSourcesDir + "/qtlockedfile",
]
cpp.frameworks: base.concat(qbs.targetOS.contains("macos") ? ["Foundation"] : [])
Depends { name: "app_version_header" }
Depends { name: "Qt"; submodules: ["widgets", "network"] }
Depends { name: "Utils" }
@@ -97,4 +99,12 @@ QtcProduct {
"../shared/qtlockedfile/qtlockedfile_win.cpp"
]
}
Group {
name: "main_macos"
condition: qbs.targetOS.contains("macos")
files: [
"main_mac.mm"
]
}
}