diff options
author | endolf <[email protected]> | 2007-06-10 15:03:27 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2007-06-10 15:03:27 +0000 |
commit | de335a22ccd4056a3e12192ba8f3254fd327b4cd (patch) | |
tree | fe3c7c14775ca2bb3a7e90b29fe519c3d4056e23 /build.xml | |
parent | f8ed18121deed1c97e28f229406a82bc980d8386 (diff) |
Implement the isSupported method and make plugins work again. There was an issue where accessing the static methods in DefaultControllerEnvironment and ControllerEnvironment would cause ploblems when the plugins were loaded using the PluginLoader class loader.
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@187 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -83,6 +83,23 @@ <iterate target="javadoc"/> </target> + <target name="pluginTest" depends="dist" description="Build plugin version"> + <mkdir dir="dist"/> + <mkdir dir="dist/controller"/> + <copy todir="dist"> + <fileset file="coreAPI/bin/jinput-core.jar"/> + <fileset file="coreAPI/bin/jinput-test.jar"/> + <fileset file="plugins/DX8/lib/jutils.jar"/> + </copy> + <copy todir="dist/controller"> + <fileset dir="plugins/awt/bin"/> + <fileset dir="plugins/linux/bin"/> + <fileset dir="plugins/OSX/bin"/> + <fileset dir="plugins/windows/bin"/> + <fileset dir="plugins/wintab/bin"/> + </copy> + </target> + <target name="dist" depends="init" description="Build the distribution file for this system"> <iterate target="all"/> <mkdir dir="dist"/> |