diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2024-02-26 01:21:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 01:21:10 (GMT) |
commit | bee7bb3310b356e99e3a0f75f23efbc97f1b0a24 (patch) | |
tree | 97867cc02ffa0f96440aae9f2d75ac1d08265213 /iOS/Resources/dylib-Info-template.plist | |
parent | e921f09c8a7eb2ab24e8a782b65531ee5afb291a (diff) | |
download | cpython-bee7bb3310b356e99e3a0f75f23efbc97f1b0a24.zip cpython-bee7bb3310b356e99e3a0f75f23efbc97f1b0a24.tar.gz cpython-bee7bb3310b356e99e3a0f75f23efbc97f1b0a24.tar.bz2 |
gh-114099: Add configure and Makefile targets to support iOS compilation. (GH-115390)
Diffstat (limited to 'iOS/Resources/dylib-Info-template.plist')
-rw-r--r-- | iOS/Resources/dylib-Info-template.plist | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/iOS/Resources/dylib-Info-template.plist b/iOS/Resources/dylib-Info-template.plist new file mode 100644 index 0000000..f652e27 --- /dev/null +++ b/iOS/Resources/dylib-Info-template.plist @@ -0,0 +1,26 @@ +<?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>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string></string> + <key>CFBundleIdentifier</key> + <string></string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>iPhoneOS</string> + </array> + <key>MinimumOSVersion</key> + <string>12.0</string> + <key>CFBundleVersion</key> + <string>1</string> +</dict> +</plist> |