mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
iOS build: bundle application icons and Info.plist
This way the iDevice will show the correct name and icon for Subsurface-mobile. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ba8014eb5c
commit
8a96f6e90b
19 changed files with 85 additions and 0 deletions
79
packaging/ios/Info.plist
Normal file
79
packaging/ios/Info.plist
Normal file
|
@ -0,0 +1,79 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleIcons</key>
|
||||
<dict>
|
||||
<key>CFBundlePrimaryIcon</key>
|
||||
<dict>
|
||||
<key>CFBundleIconFiles</key>
|
||||
<array>
|
||||
<string>AppIcon29x29.png</string>
|
||||
<string>AppIcon29x29@2x.png</string>
|
||||
<string>AppIcon40x40@2x.png</string>
|
||||
<string>AppIcon57x57.png</string>
|
||||
<string>AppIcon57x57@2x.png</string>
|
||||
<string>AppIcon60x60@2x.png</string>
|
||||
</array>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIcons~ipad</key>
|
||||
<dict>
|
||||
<key>CFBundlePrimaryIcon</key>
|
||||
<dict>
|
||||
<key>CFBundleIconFiles</key>
|
||||
<array>
|
||||
<string>AppIcon29x29.png</string>
|
||||
<string>AppIcon29x29@2x.png</string>
|
||||
<string>AppIcon40x40@2x.png</string>
|
||||
<string>AppIcon57x57.png</string>
|
||||
<string>AppIcon57x57@2x.png</string>
|
||||
<string>AppIcon60x60@2x.png</string>
|
||||
<string>AppIcon29x29~ipad.png</string>
|
||||
<string>AppIcon29x29@2x~ipad.png</string>
|
||||
<string>AppIcon40x40~ipad.png</string>
|
||||
<string>AppIcon40x40@2x~ipad.png</string>
|
||||
<string>AppIcon50x50~ipad.png</string>
|
||||
<string>AppIcon50x50@2x~ipad.png</string>
|
||||
<string>AppIcon72x72~ipad.png</string>
|
||||
<string>AppIcon72x72@2x~ipad.png</string>
|
||||
<string>AppIcon76x76~ipad.png</string>
|
||||
<string>AppIcon76x76@2x~ipad.png</string>
|
||||
</array>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Created by Qt/QMake</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>subsurface-ios</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.subsurface-divelog.subsurface-mobile</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>Subsruface-mobile</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Subsruface-mobile</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.93</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen</string>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>NOTE</key>
|
||||
<string>This file was generated by Qt/QMake.</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2011-2016 Linus Torvalds, Dirk Hohndel, Tomaz Canabrava and the Subsurface developer team</string>
|
||||
</dict>
|
||||
</plist>
|
|
@ -218,3 +218,9 @@ QML_IMPORT_PATH =
|
|||
|
||||
# Default rules for deployment.
|
||||
include(deployment.pri)
|
||||
|
||||
ios {
|
||||
ios_icon.files = $$files(../../../icons/AppIcon*.png)
|
||||
QMAKE_BUNDLE_DATA += ios_icon
|
||||
QMAKE_INFO_PLIST = ../Info.plist
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue