From: Francesco M. <fr...@us...> - 2006-12-22 20:45:12
|
Update of /cvsroot/wxlua/wxLua/distrib/macbundle In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28891/distrib/macbundle Added Files: Info.plist.in wxLua.icns Log Message: added Mac-bundling support (mostly a copy and paste of wxWidgets' mac bundling support code) --- NEW FILE: Info.plist.in --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> <plist version="0.9"> <dict> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleIdentifier</key> <string>org.wxwindows.IDENTIFIER</string> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>EXECUTABLE</string> <key>CFBundleIconFile</key> <string>wxmac.icns</string> <key>CFBundleName</key> <string>EXECUTABLE</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> <string>VERSION</string> <key>CFBundleShortVersionString</key> <string>VERSION</string> <key>CFBundleGetInfoString</key> <string>EXECUTABLE version VERSION, (c) 2002-2006 wxWidgets</string> <key>CFBundleLongVersionString</key> <string>VERSION, (c) 2002-2006 wxWidgets</string> <key>NSHumanReadableCopyright</key> <string>Copyright 2002-2006 wxWidgets</string> <key>LSRequiresCarbon</key> <true/> <key>CSResourcesFileMapped</key> <true/> </dict> </plist> --- NEW FILE: wxLua.icns --- (This appears to be a binary file; contents omitted.) |