Add Info.plist and application icon to Theme Editor on OS X.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27324 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-07-06 21:46:53 +00:00
parent e464128c54
commit b4443ef167
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?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="0.9">
<dict>
<key>CFBundleExecutable</key>
<string>themeeditor</string>
<key>CFBundleName</key>
<string>Theme Editor</string>
<key>CFBundleShortVersionString</key>
<string>SVN</string>
<key>CFBundleIconFile</key>
<string>windowicon.icns</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleIdentifier</key>
<string>org.rockbox.themeeditor</string>
</dict>
</plist>

Binary file not shown.

View file

@ -88,5 +88,7 @@ macx {
QMAKE_LFLAGS_PPC=-mmacosx-version-min=10.4 -arch ppc
QMAKE_LFLAGS_X86=-mmacosx-version-min=10.4 -arch i386
CONFIG+=x86 ppc
QMAKE_INFO_PLIST = Info.plist
RC_FILE = resources/windowicon.icns
}