aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cocoa-touch-application/cocoa-touch-application.qbs
diff options
context:
space:
mode:
authorAndrey Filipenkov <decapitator@ukr.net>2020-12-13 19:31:34 +0300
committerAndrey Filipenkov <decapitator@ukr.net>2020-12-14 21:48:23 +0000
commitd3d49f4167e72f3a91d349b36ce95a415234e9d1 (patch)
treee1a56a9899f6d7cbfac4c5a3ac2e22b15369e46a /examples/cocoa-touch-application/cocoa-touch-application.qbs
parent3f6d0cdd4d2e415509760b0f7f85065586e59f57 (diff)
Cocoa Touch Application: use launch storyboard
replace legacy static launch images with launch storyboard Change-Id: I16c5d829bc2852f5388ef66218c23f1a126e5130 Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
Diffstat (limited to 'examples/cocoa-touch-application/cocoa-touch-application.qbs')
-rw-r--r--examples/cocoa-touch-application/cocoa-touch-application.qbs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/cocoa-touch-application/cocoa-touch-application.qbs b/examples/cocoa-touch-application/cocoa-touch-application.qbs
index 25e6d7029..bf2fb4080 100644
--- a/examples/cocoa-touch-application/cocoa-touch-application.qbs
+++ b/examples/cocoa-touch-application/cocoa-touch-application.qbs
@@ -59,6 +59,7 @@ CppApplication {
install: true
bundle.identifierPrefix: "io.qbs"
+ bundle.infoPlist: ({"UILaunchStoryboardName": "LaunchScreen"})
cpp.useObjcPrecompiledHeader: true
cpp.minimumIosVersion: "9.0"
@@ -93,9 +94,7 @@ CppApplication {
Group {
id: bundle_resources
files: [
- "CocoaTouchApplication/Default-568h@2x.png",
- "CocoaTouchApplication/Default.png",
- "CocoaTouchApplication/Default@2x.png",
+ "CocoaTouchApplication/LaunchScreen.storyboard",
"CocoaTouchApplication/en.lproj/InfoPlist.strings"
]
}