diff options
author | Jake Petroules <jake.petroules@theqtcompany.com> | 2015-10-28 19:03:44 -0700 |
---|---|---|
committer | Jake Petroules <jake.petroules@theqtcompany.com> | 2015-11-02 16:44:21 +0000 |
commit | ce555d558b0b642f0c32fc0ea4cc94ab306735e6 (patch) | |
tree | 88b8587402a0bbed7e2b7000982866efac7d14d6 /examples/cocoa-application | |
parent | a36012d727bb0f755b349e64af481d315c06bd56 (diff) | |
download | qbs-ce555d558b0b642f0c32fc0ea4cc94ab306735e6.tar.gz |
Deprecate bundle.infoPlistFile and start tagging Info.plist files.
This ensures that artifacts will be appropriately rebuilt if the
product's Info.plist file changes, which is currently ignored.
Change-Id: I3adf7e74bd32f3bb8d3084061dd2793aa02b932c
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'examples/cocoa-application')
-rw-r--r-- | examples/cocoa-application/CocoaApplication.qbs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/cocoa-application/CocoaApplication.qbs b/examples/cocoa-application/CocoaApplication.qbs index 95d55e95a..5e9ad9547 100644 --- a/examples/cocoa-application/CocoaApplication.qbs +++ b/examples/cocoa-application/CocoaApplication.qbs @@ -45,6 +45,7 @@ CppApplication { cpp.precompiledHeader: "CocoaApplication/CocoaApplication-Prefix.pch" + // TODO: Remove in 1.6 bundle.infoPlistFile: "CocoaApplication/CocoaApplication-Info.plist" cpp.frameworks: ["Cocoa"] @@ -54,6 +55,7 @@ CppApplication { files: [ "AppDelegate.h", "AppDelegate.m", + //"CocoaApplication-Info.plist", "CocoaApplication-Prefix.pch", "main.m" ] |