|
From: Henri A. <has...@us...> - 2004-10-28 00:21:12
|
Update of /cvsroot/frontierkernel/Frontier/build_XCode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4163 Added Files: Info.plist Log Message: Added Info.plist to describe the Frontier.app bundle. An icons file needs to be created and linked in via Info.plist to display the icon for the bundle. --- NEW FILE: Info.plist --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//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>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> <string>.root</string> </array> <key>CFBundleTypeName</key> <string>Frontier Root</string> </dict> </array> <key>CFBundleExecutable</key> <string>${PRODUCT_NAME}</string> <key>CFBundleIdentifier</key> <string>com.scripting.Frontier</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> <string>${DYLIB_CURRENT_VERSION}</string> </dict> </plist> |