add natives for all major platforms, #51

This commit is contained in:
Bixilon 2021-11-29 16:10:38 +01:00
parent ecd3d1e93e
commit 2d308d40bc
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

32
pom.xml
View File

@ -151,6 +151,18 @@
<lwjgl.natives>natives-linux</lwjgl.natives>
</properties>
</profile>
<profile>
<id>lwjgl-natives-linux-aarch64</id>
<activation>
<os>
<family>unix</family>
<arch>aarch64</arch>
</os>
</activation>
<properties>
<lwjgl.natives>natives-linux-arm64</lwjgl.natives>
</properties>
</profile>
<profile>
<id>lwjgl-natives-macos-amd64</id>
<activation>
@ -163,6 +175,18 @@
<lwjgl.natives>natives-macos</lwjgl.natives>
</properties>
</profile>
<profile>
<id>lwjgl-natives-macos-aarch64</id>
<activation>
<os>
<family>mac</family>
<arch>aarch64</arch>
</os>
</activation>
<properties>
<lwjgl.natives>natives-macos-arm64</lwjgl.natives>
</properties>
</profile>
<profile>
<id>lwjgl-natives-windows-amd64</id>
<activation>
@ -176,15 +200,15 @@
</properties>
</profile>
<profile>
<id>lwjgl-natives-linux-aarch64</id>
<id>lwjgl-natives-windows-x86</id>
<activation>
<os>
<family>unix</family>
<arch>aarch64</arch>
<family>windows</family>
<arch>x86</arch>
</os>
</activation>
<properties>
<lwjgl.natives>natives-linux-arm64</lwjgl.natives>
<lwjgl.natives>natives-windows-x86</lwjgl.natives>
</properties>
</profile>
</profiles>