Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-09-03 13:17:22 +0000
committerAlexander Kurtakov2015-11-13 17:33:41 +0000
commitf9a4df947e4da913325b8523f9812b59da0cdacb (patch)
tree0e9d4abfb81a390defe41eb99a8f09dab06a4cb3 /pom.xml
parentdf8289155d6db4a52817db79d942316bfa3c9ece (diff)
downloadrt.equinox.framework-f9a4df947e4da913325b8523f9812b59da0cdacb.tar.gz
rt.equinox.framework-f9a4df947e4da913325b8523f9812b59da0cdacb.tar.xz
rt.equinox.framework-f9a4df947e4da913325b8523f9812b59da0cdacb.zip
Bug 431197 - Provide launchers for arm and aarch64I20151117-0800
Add fragments hook them in the build system but conditionally via profiles. Change-Id: Ia93e5ac1a495bc4c953f861e583747ce89c22256 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 9980911d5..ad4bf4560 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,30 @@
</repository>
</repositories>
</profile>
+ <profile>
+ <id>build-native-launchers-gtk.linux.arm</id>
+ <activation>
+ <property>
+ <name>native</name>
+ <value>gtk.linux.arm</value>
+ </property>
+ </activation>
+ <modules>
+ <module>bundles/org.eclipse.equinox.launcher.gtk.linux.arm</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>build-native-launchers-gtk.linux.aarch64</id>
+ <activation>
+ <property>
+ <name>native</name>
+ <value>gtk.linux.aarch64</value>
+ </property>
+ </activation>
+ <modules>
+ <module>bundles/org.eclipse.equinox.launcher.gtk.linux.aarch64</module>
+ </modules>
+ </profile>
</profiles>
<modules>

Back to the top