diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2010-07-06 21:46:53 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2010-07-06 21:46:53 +0000 |
| commit | b4443ef1671cbd321413ff7350e8fd6214e3c68a (patch) | |
| tree | 049aeba7807a7fa8f3cfdcb8848f81c32c55baef /utils/themeeditor | |
| parent | e464128c546748edc9b54355a7cc45ab1b71f6eb (diff) | |
| download | rockbox-b4443ef1671cbd321413ff7350e8fd6214e3c68a.zip rockbox-b4443ef1671cbd321413ff7350e8fd6214e3c68a.tar.gz rockbox-b4443ef1671cbd321413ff7350e8fd6214e3c68a.tar.bz2 rockbox-b4443ef1671cbd321413ff7350e8fd6214e3c68a.tar.xz | |
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
Diffstat (limited to 'utils/themeeditor')
| -rw-r--r-- | utils/themeeditor/Info.plist | 20 | ||||
| -rw-r--r-- | utils/themeeditor/resources/windowicon.icns | bin | 0 -> 22939 bytes | |||
| -rw-r--r-- | utils/themeeditor/themeeditor.pro | 2 |
3 files changed, 22 insertions, 0 deletions
diff --git a/utils/themeeditor/Info.plist b/utils/themeeditor/Info.plist new file mode 100644 index 0000000..2d794a7 --- /dev/null +++ b/utils/themeeditor/Info.plist @@ -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> diff --git a/utils/themeeditor/resources/windowicon.icns b/utils/themeeditor/resources/windowicon.icns Binary files differnew file mode 100644 index 0000000..714f959 --- /dev/null +++ b/utils/themeeditor/resources/windowicon.icns diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro index 19c01fa..5696d8b 100644 --- a/utils/themeeditor/themeeditor.pro +++ b/utils/themeeditor/themeeditor.pro @@ -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 } |