Skip to content

Commit b6f67dd

Browse files
committed
tests: add a template Info.plist that uses the whole screen
The OS uses the presence of the UILaunchScreen key to determine whether to display the application in compatibility mode or display using the whole screen.
1 parent 09f00e3 commit b6f67dd

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Xcode/SDLTest/config.xcconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@
1010
// This allows you to set DEVELOPMENT_TEAM for all targets, for example.
1111
#include? "build.xcconfig"
1212

13+
INFOPLIST_FILE = test-Info.plist
14+
1315
CONFIG_FRAMEWORK_LDFLAGS = -lSDL3_test
1416

Xcode/SDLTest/test-Info.plist

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>UILaunchScreen</key>
6+
<dict>
7+
<key>UIColorName</key>
8+
<string></string>
9+
<key>UIImageName</key>
10+
<string></string>
11+
</dict>
12+
</dict>
13+
</plist>

0 commit comments

Comments
 (0)