diff options
author | Keith Packard <keithp@keithp.com> | 2013-01-03 17:30:29 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-01-03 17:30:29 -0800 |
commit | 36e9603f74b85776ac049758021b51909161aeb1 (patch) | |
tree | 5dc9976f25f56989d5e475d0795bd978cd5599d9 | |
parent | 722dc277dee915dcd09d3d65c0ee19173b114ef7 (diff) |
micropeak: Add Mac OS Info.plist file
needed to build a Mac OS X application
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | micropeak/Info.plist | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/micropeak/Info.plist b/micropeak/Info.plist new file mode 100644 index 00000000..5705cc1a --- /dev/null +++ b/micropeak/Info.plist @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> +<plist version="0.9"> +<dict> + <key>CFBundleName</key> + <string>MicroPeak</string> + <key>CFBundleVersion</key> + <string>1.1.9.2</string> + <key>CFBundleAllowMixedLocalizations</key> + <string>true</string> + <key>CFBundleExecutable</key> + <string>JavaApplicationStub</string> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleIdentifier</key> + <string>org.altusmetrum.altosui</string> + <key>CFBundleSignature</key> + <string>Altu</string> + <key>CFBundleGetInfoString</key> + <string>MicroPeak UI version 1.1.9.2</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleIconFile</key> + <string>MicroPeak.icns</string> + <key>Java</key> + <dict> + <key>MainClass</key> + <string>org.altusmetrum.micropeak.MicroPeak</string> + <key>JVMVersion</key> + <string>1.5+</string> + <key>ClassPath</key> + <array> + <string>$JAVAROOT/micropeak.jar</string> + </array> + <key>VMOptions</key> + <array> + <string>-Xms512M</string> + <string>-Xmx512M</string> + <string>-Dosgi.clean=true</string> + </array> + </dict> +</dict> +</plist> |