diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-07-19 22:29:21 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-07-19 22:29:21 (GMT) |
commit | dadef90f080d5434db1f6924cc74a805a3a451cd (patch) | |
tree | 9242182407e2cc57f2542ff10de5926991a66544 /Nim/Cocoa/Info.plist | |
parent | daab20b99ee72e29ae392ebe234ac40fcf2d2fc0 (diff) | |
download | swift-contrib-dadef90f080d5434db1f6924cc74a805a3a451cd.zip swift-contrib-dadef90f080d5434db1f6924cc74a805a3a451cd.tar.bz2 |
Added beginnings of a menulet.
Diffstat (limited to 'Nim/Cocoa/Info.plist')
-rw-r--r-- | Nim/Cocoa/Info.plist | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Nim/Cocoa/Info.plist b/Nim/Cocoa/Info.plist new file mode 100644 index 0000000..612b7da --- /dev/null +++ b/Nim/Cocoa/Info.plist @@ -0,0 +1,28 @@ +<?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>CFBundleIconFile</key> + <string></string> + <key>CFBundleIdentifier</key> + <string>com.yourcompany.${PRODUCT_NAME:identifier}</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>${PRODUCT_NAME}</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> +</dict> +</plist> |