maven: add lwjgl natives for linux aarch64

This commit is contained in:
Bixilon 2021-11-29 12:52:04 +01:00
parent 27cc5adbcf
commit 0b0ae3dd44
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

12
pom.xml
View File

@ -175,6 +175,18 @@
<lwjgl.natives>natives-windows</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>
</profiles>