Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 84e9f74194df25d6f22618fd0a0afca5aaa48314 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
###############################################################################
# Copyright (c) 2000, 2014 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################

#custom = true
bin.includes = bin/,\
               feature.xml,\
               feature.properties,\
               gtk_root/

####Even though marked as custom, the content of the build.properties needs to be updated to ensure correctness of RCP app exported 
#root.permissions.755=${launcherName}

root.win32.win32.x86=bin/win32/win32/x86
root.win32.win32.x86.permissions.755=launcher.exe
root.win32.win32.x86_64=bin/win32/win32/x86_64
root.win32.win32.x86_64.permissions.755=launcher.exe

root.linux.gtk.x86=bin/gtk/linux/x86,gtk_root
root.linux.gtk.x86.permissions.755=launcher,libcairo-swt.so

root.linux.gtk.ppc=bin/gtk/linux/ppc,gtk_root
root.linux.gtk.ppc.permissions.755=launcher

root.linux.gtk.ppc64=bin/gtk/linux/ppc64,gtk_root
root.linux.gtk.ppc64.permissions.755=launcher

root.linux.gtk.ppc64le=bin/gtk/linux/ppc64le,gtk_root
root.linux.gtk.ppc64le.permissions.755=launcher

root.macosx.cocoa.x86_64=bin/cocoa/macosx/x86_64
root.macosx.cocoa.x86_64.permissions.755=Eclipse.app/Contents/MacOS/launcher

root.aix.gtk.ppc64=bin/gtk/aix/ppc64
root.aix.gtk.ppc64.permissions.755=launcher
root.aix.gtk.ppc=bin/gtk/aix/ppc
root.aix.gtk.ppc.permissions.755=launcher

root.hpux.gtk.ia64=bin/gtk/hpux/ia64
root.hpux.gtk.ia64.permissions.755=launcher

root.solaris.gtk.x86_64=bin/gtk/solaris/x86_64
root.solaris.gtk.x86_64.permissions.755=launcher

root.solaris.gtk.sparcv9=bin/gtk/solaris/sparcv9
root.solaris.gtk.sparcv9.permissions.755=launcher

root.linux.gtk.x86_64=bin/gtk/linux/x86_64,gtk_root
root.linux.gtk.x86_64.permissions.755=libcairo-swt.so

root.linux.gtk.s390x=bin/gtk/linux/s390x,gtk_root
root.linux.gtk.s390x.permissions.755=launcher
root.linux.gtk.s390=bin/gtk/linux/s390,gtk_root
root.linux.gtk.s390.permissions.755=launcher


Back to the top