aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorendolf <[email protected]>2007-06-10 15:03:27 +0000
committerendolf <[email protected]>2007-06-10 15:03:27 +0000
commitde335a22ccd4056a3e12192ba8f3254fd327b4cd (patch)
treefe3c7c14775ca2bb3a7e90b29fe519c3d4056e23 /build.xml
parentf8ed18121deed1c97e28f229406a82bc980d8386 (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.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 317cbf7..9cb1087 100644
--- a/build.xml
+++ b/build.xml
@@ -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"/>