Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2021-01-18 22:10:45 +0000
committerLakshmi Shanmugam2021-01-19 16:16:41 +0000
commitbd95c1bf8962083b479721a2b6fa7b009e68b1fd (patch)
treeec977e92238e69d23d0da3d9887d86cb7f27096d
parent0f05d756e18ceeee138e505de253bcfd36093167 (diff)
downloadrt.equinox.framework-bd95c1bf8962083b479721a2b6fa7b009e68b1fd.tar.gz
rt.equinox.framework-bd95c1bf8962083b479721a2b6fa7b009e68b1fd.tar.xz
rt.equinox.framework-bd95c1bf8962083b479721a2b6fa7b009e68b1fd.zip
Bug 570463 - [Mac]Build launcher for Mac arm64
Added Info.plist for mac arm64 Change-Id: I1e1472493526a0ca2e76ae2504d58e0241e6e64e Signed-off-by: Lakshmi Shanmugam <lshanmug@in.ibm.com>
-rw-r--r--features/org.eclipse.equinox.executable.feature/bin/cocoa/macosx/arm64/Eclipse.app/Contents/Info.plist42
1 files changed, 42 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/bin/cocoa/macosx/arm64/Eclipse.app/Contents/Info.plist b/features/org.eclipse.equinox.executable.feature/bin/cocoa/macosx/arm64/Eclipse.app/Contents/Info.plist
new file mode 100644
index 000000000..b507d7520
--- /dev/null
+++ b/features/org.eclipse.equinox.executable.feature/bin/cocoa/macosx/arm64/Eclipse.app/Contents/Info.plist
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+
+<dict>
+ <key>CFBundleExecutable</key>
+ <string>eclipse</string>
+ <key>CFBundleGetInfoString</key>
+ <string>Eclipse 4.19 for Mac OS X, Copyright IBM Corp. and others 2002, 2021. All rights reserved.</string>
+ <key>CFBundleIconFile</key>
+ <string>Eclipse.icns</string>
+ <key>CFBundleIdentifier</key>
+ <string>org.eclipse.Eclipse</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>Eclipse</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>4.19</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>4.19</string>
+ <key>NSHighResolutionCapable</key>
+ <true/>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>Eclipse</key>
+ <array>
+ <!-- to use a specific Java version (instead of the platform's default) uncomment one of the following options,
+ or add a VM found via $/usr/libexec/java_home -V
+ <string>-vm</string><string>/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Commands/java</string>
+ <string>-vm</string><string>/Library/Java/JavaVirtualMachines/1.8.0.jdk/Contents/Home/bin/java</string>
+ -->
+ <string>-keyring</string><string>~/.eclipse_keyring</string>
+ </array>
+</dict>
+
+</plist>
+

Back to the top