diff options
author | gregorypierce <[email protected]> | 2004-02-28 01:24:09 +0000 |
---|---|---|
committer | gregorypierce <[email protected]> | 2004-02-28 01:24:09 +0000 |
commit | c3307002266097cd5345cf848ba2580363ca4f02 (patch) | |
tree | 16f39b1b5cdff614c805ee8f91848fb805c4a00c /plugins/OSX | |
parent | ffa982127fbc27555c671dcfd5cd822f401da53f (diff) |
Updated for correct build environment
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@70 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins/OSX')
-rw-r--r-- | plugins/OSX/src/native/build.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/OSX/src/native/build.xml b/plugins/OSX/src/native/build.xml index 3d6a964..a78fd13 100644 --- a/plugins/OSX/src/native/build.xml +++ b/plugins/OSX/src/native/build.xml @@ -1,6 +1,11 @@ <?xml version="1.0" ?> <project name="OS X Plugin, Native code" basedir="." default="compileNativeJinputLib"> - + <description>OSX JInput Native Plugin</description> + <property name="src" location="src" /> + <property name="build" location="classes" /> + <property name="dist" location="../../dist" /> + <property name="plugins" location="plugins" /> + <target name="init"> <mkdir dir="build"/> </target> @@ -11,7 +16,7 @@ <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 "/> + <arg line="-bundle -o ${dist}/libjinput.jnilib jinputjnilib.o -framework JavaVM -framework CoreFoundation -framework IOKit "/> </exec> </target> |