aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/OSX/src/native/build.xml
blob: 3d6a964b84950920923d285a44ee6050805ced37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" ?>
<project name="OS X Plugin, Native code" basedir="." default="compileNativeJinputLib">

    <target name="init">
        <mkdir dir="build"/>
    </target>

    <target name="compileNativeJinputLib" depends="init">
        <exec dir="." executable="cc" os="Mac OS X">
		
            <arg line="-c -I${java.home}/include jinputjnilib.c"/>
        </exec>
		<exec dir="." executable="cc" os="Mac OS X">
	       <arg line="-bundle -o libjinput.jnilib jinputjnilib.o -framework JavaVM -framework CoreFoundation -framework IOKit "/>
     	</exec>
    </target>

</project>