diff options
author | Marc-Andre Laperle | 2013-09-30 02:56:02 +0000 |
---|---|---|
committer | Alexander Kurtakov | 2013-10-15 18:05:51 +0000 |
commit | ac59e204ec1e8cad623db3f1266b42490417442e (patch) | |
tree | e8a5fa68fa82467eada6f4510e2cbc45d2663321 /pom.xml | |
parent | 0112b7782029e0330f3d9ed312f5eb5e7dda211b (diff) | |
download | org.eclipse.linuxtools-ac59e204ec1e8cad623db3f1266b42490417442e.tar.gz org.eclipse.linuxtools-ac59e204ec1e8cad623db3f1266b42490417442e.tar.xz org.eclipse.linuxtools-ac59e204ec1e8cad623db3f1266b42490417442e.zip |
Specify target runtime environments in build
This gets rid of the warnings "No explicit target runtime environment
configuration. Build is platform dependent".
This also allows cross-compiling. The Linux tools p2 repo can now be
built on Windows and Mac.
Change-Id: Ifa1257b5ae67123d51947536de180e611a3d8ed2
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/16866
Tested-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
IP-Clean: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@linux.vnet.ibm.com>
Tested-by: Wainer dos Santos Moschetta <wainersm@linux.vnet.ibm.com>
Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
IP-Clean: Alexander Kurtakov <akurtako@redhat.com>
Tested-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -252,6 +252,18 @@ <version>${tycho-version}</version> <configuration> <resolver>p2</resolver> + <environments> + <environment> + <os>linux</os> + <ws>gtk</ws> + <arch>x86</arch> + </environment> + <environment> + <os>linux</os> + <ws>gtk</ws> + <arch>x86_64</arch> + </environment> + </environments> </configuration> </plugin> <plugin> |