summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2010-07-06 21:46:53 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2010-07-06 21:46:53 +0000
commitb4443ef1671cbd321413ff7350e8fd6214e3c68a (patch)
tree049aeba7807a7fa8f3cfdcb8848f81c32c55baef
parente464128c546748edc9b54355a7cc45ab1b71f6eb (diff)
downloadrockbox-b4443ef1671cbd321413ff7350e8fd6214e3c68a.tar.gz
rockbox-b4443ef1671cbd321413ff7350e8fd6214e3c68a.zip
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
-rw-r--r--utils/themeeditor/Info.plist20
-rw-r--r--utils/themeeditor/resources/windowicon.icnsbin0 -> 22939 bytes
-rw-r--r--utils/themeeditor/themeeditor.pro2
3 files changed, 22 insertions, 0 deletions
diff --git a/utils/themeeditor/Info.plist b/utils/themeeditor/Info.plist
new file mode 100644
index 0000000000..2d794a72b6
--- /dev/null
+++ b/utils/themeeditor/Info.plist
@@ -0,0 +1,20 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="0.9">
4 <dict>
5 <key>CFBundleExecutable</key>
6 <string>themeeditor</string>
7 <key>CFBundleName</key>
8 <string>Theme Editor</string>
9 <key>CFBundleShortVersionString</key>
10 <string>SVN</string>
11 <key>CFBundleIconFile</key>
12 <string>windowicon.icns</string>
13 <key>CFBundlePackageType</key>
14 <string>APPL</string>
15 <key>CFBundleSignature</key>
16 <string>????</string>
17 <key>CFBundleIdentifier</key>
18 <string>org.rockbox.themeeditor</string>
19 </dict>
20</plist>
diff --git a/utils/themeeditor/resources/windowicon.icns b/utils/themeeditor/resources/windowicon.icns
new file mode 100644
index 0000000000..714f959248
--- /dev/null
+++ b/utils/themeeditor/resources/windowicon.icns
Binary files differ
diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro
index 19c01fa082..5696d8bce4 100644
--- a/utils/themeeditor/themeeditor.pro
+++ b/utils/themeeditor/themeeditor.pro
@@ -88,5 +88,7 @@ macx {
88 QMAKE_LFLAGS_PPC=-mmacosx-version-min=10.4 -arch ppc 88 QMAKE_LFLAGS_PPC=-mmacosx-version-min=10.4 -arch ppc
89 QMAKE_LFLAGS_X86=-mmacosx-version-min=10.4 -arch i386 89 QMAKE_LFLAGS_X86=-mmacosx-version-min=10.4 -arch i386
90 CONFIG+=x86 ppc 90 CONFIG+=x86 ppc
91 QMAKE_INFO_PLIST = Info.plist
92 RC_FILE = resources/windowicon.icns
91} 93}
92 94