aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/OSX/src/native/build.xml
diff options
context:
space:
mode:
authorFirst Last <[email protected]>2004-04-21 16:19:43 +0000
committerFirst Last <[email protected]>2004-04-21 16:19:43 +0000
commit70ffb843c5813f07b3e9d34f89343e5064900a3c (patch)
tree2558b7c5b7c744ed33ea3a91b7192d8cd3d59653 /plugins/OSX/src/native/build.xml
parent2b0bdf9979ac5dd092883685843000c9f0884f4a (diff)
This commit was manufactured by cvs2svn to create tag 'Tested'.Tested
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/tags/Tested@79 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins/OSX/src/native/build.xml')
-rw-r--r--plugins/OSX/src/native/build.xml23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/OSX/src/native/build.xml b/plugins/OSX/src/native/build.xml
deleted file mode 100644
index b88c856..0000000
--- a/plugins/OSX/src/native/build.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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>
-
- <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>