mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-01-02 06:49:59 +01:00
Add profiles for OS builds
This commit is contained in:
parent
289a6db298
commit
2b7d10e435
|
|
@ -6,11 +6,6 @@
|
|||
<target name="init">
|
||||
<mkdir dir="target/natives"/>
|
||||
<mkdir dir="target/generated-sources/natives"/>
|
||||
<condition property="linux" >
|
||||
<!--<os family="unix" />-->
|
||||
<os name="Linux" />
|
||||
</condition>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="createNativeDefinitions.java">
|
||||
|
|
|
|||
|
|
@ -13,6 +13,36 @@
|
|||
|
||||
<modules>
|
||||
<module>awt</module>
|
||||
<module>linux</module>
|
||||
</modules>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>Linux</id>
|
||||
<activation>
|
||||
<os>
|
||||
<name>linux</name>
|
||||
</os>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>linux</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>Windows</id>
|
||||
<activation>
|
||||
<os>
|
||||
<family>windows</family>
|
||||
</os>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>windows</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>Wintab</id>
|
||||
<modules>
|
||||
<module>wintab</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
Loading…
Reference in a new issue