Move UNIX-specific flags to the unix profile

master
Graham 5 years ago
parent 3c0c25ed3e
commit 397f3fb4cc
  1. 62
      gl-natives/pom.xml

@ -13,30 +13,40 @@
<name>OpenRS2 GL Natives</name> <name>OpenRS2 GL Natives</name>
<build> <profiles>
<plugins> <profile>
<plugin> <id>unix</id>
<groupId>com.github.maven-nar</groupId> <activation>
<artifactId>nar-maven-plugin</artifactId> <os>
<configuration> <family>unix</family>
<linker> </os>
<sysLibs> </activation>
<sysLib> <build>
<type>shared</type> <plugins>
<name>GL</name> <plugin>
</sysLib> <groupId>com.github.maven-nar</groupId>
<sysLib> <artifactId>nar-maven-plugin</artifactId>
<type>shared</type> <configuration>
<name>GLX</name> <linker>
</sysLib> <sysLibs>
<sysLib> <sysLib>
<type>shared</type> <type>shared</type>
<name>jawt</name> <name>GL</name>
</sysLib> </sysLib>
</sysLibs> <sysLib>
</linker> <type>shared</type>
</configuration> <name>GLX</name>
</plugin> </sysLib>
</plugins> <sysLib>
</build> <type>shared</type>
<name>jawt</name>
</sysLib>
</sysLibs>
</linker>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project> </project>

Loading…
Cancel
Save