summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mac
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-12 00:18:15 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-12 03:57:37 -0700
commit1b8073bcedfe20c2dd2def82cc81bc909970b179 (patch)
tree20dbbb65c06c83456da6019631ec1fc5ac1db938 /crawl-ref/source/mac
parentea87539549413ac9595762ec09fcbab4b3f0032b (diff)
downloadcrawl-ref-1b8073bcedfe20c2dd2def82cc81bc909970b179.tar.gz
crawl-ref-1b8073bcedfe20c2dd2def82cc81bc909970b179.zip
Xcode: set minimum OS versions by architecture
i386 and ppc are able to run on 10.4 and above. x86_64 is able to run on 10.6 and above. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/mac')
-rw-r--r--crawl-ref/source/mac/Crawl-Info.plist35
1 files changed, 35 insertions, 0 deletions
diff --git a/crawl-ref/source/mac/Crawl-Info.plist b/crawl-ref/source/mac/Crawl-Info.plist
new file mode 100644
index 0000000000..4ffd139625
--- /dev/null
+++ b/crawl-ref/source/mac/Crawl-Info.plist
@@ -0,0 +1,35 @@
+<?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>English</string>
+ <key>CFBundleExecutable</key>
+ <string>${EXECUTABLE_NAME}</string>
+ <key>CFBundleIdentifier</key>
+ <string>net.sourceforge.crawl-ref</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleIconFile</key>
+ <string>Crawl</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1.0</string>
+ <key>NSMainNibFile</key>
+ <string>MainMenu</string>
+ <key>NSPrincipalClass</key>
+ <string>NSApplication</string>
+ <key>LSMinimumSystemVersionByArchitecture</key>
+ <dict>
+ <key>x86_64</key>
+ <string>10.6.0</string>
+ <key>i386</key>
+ <string>10.4.0</string>
+ <key>ppc</key>
+ <string>10.4.0</string>
+ </dict>
+</dict>
+</plist>