diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-01-19 12:49:44 +0100 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-01-19 12:49:44 +0100 |
commit | 09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5 (patch) | |
tree | e14cbd2dc368fe6fa5cc12ac0571371144d5f857 /pdf-over-gui | |
parent | 639074df10b404276001504021d5f1b6755d4c5f (diff) | |
download | pdf-over-09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5.tar.gz pdf-over-09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5.tar.bz2 pdf-over-09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5.zip |
change logging directory, and rearrange profiles to match my build environment (cf. #62)
Diffstat (limited to 'pdf-over-gui')
-rw-r--r-- | pdf-over-gui/pom.xml | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index 23c21a09..6e635171 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -456,27 +456,27 @@ <profiles> <!-- Note: Build system profile has to come first! Else it overwrites the chosen profile --> - <profile> - <id>windows-64</id> + <profile> + <id>linux-64</id> <activation> <os> - <family>windows</family> + <name>linux</name> <arch>amd64</arch> </os> </activation> <properties> -<!-- <swt.artifactId.32>org.eclipse.swt.win32.win32.x86</swt.artifactId.32>--> - <swt.artifactId.64>org.eclipse.swt.win32.win32.x86_64</swt.artifactId.64> +<!-- <swt.artifactId.32>org.eclipse.swt.gtk.linux.x86</swt.artifactId.32>--> + <swt.artifactId.64>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId.64> <swt.artifactId>${swt.artifactId.64}</swt.artifactId> - <target.name>windows</target.name> + <target.name>linux</target.name> </properties> </profile> <profile> - <id>windows</id> + <id>windows-64</id> <activation> <os> <family>windows</family> - <arch>x86</arch> + <arch>amd64</arch> </os> </activation> <properties> @@ -486,20 +486,19 @@ <target.name>windows</target.name> </properties> </profile> - <profile> - <id>linux-64</id> + <id>windows</id> <activation> <os> - <name>linux</name> - <arch>amd64</arch> + <family>windows</family> + <arch>x86</arch> </os> </activation> <properties> -<!-- <swt.artifactId.32>org.eclipse.swt.gtk.linux.x86</swt.artifactId.32>--> - <swt.artifactId.64>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId.64> +<!-- <swt.artifactId.32>org.eclipse.swt.win32.win32.x86</swt.artifactId.32>--> + <swt.artifactId.64>org.eclipse.swt.win32.win32.x86_64</swt.artifactId.64> <swt.artifactId>${swt.artifactId.64}</swt.artifactId> - <target.name>linux</target.name> + <target.name>windows</target.name> </properties> </profile> <profile> |