diff options
author | Wade Walker <[email protected]> | 2011-02-17 11:20:39 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2011-02-18 08:52:34 -0600 |
commit | e5777ec9e6ea79e0aface29fa679ccea4035f0e2 (patch) | |
tree | 3c6aa4c6f51c9ffcac7724b7a17dbc08494147cc /make/build.xml | |
parent | 943313af19da04044dddda57cb6bc4bd399eb76e (diff) |
Add new all.ide target for use in Eclipse, NetBeans, and IntelliJ
The new target just omits final JAR creation and file copying for
extra speed within an IDE. We also change where Eclipse looks for
the native libraries, since this new target doesn't copy them
to jogl/build/lib.
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make/build.xml b/make/build.xml index 518e17309..40b001afd 100644 --- a/make/build.xml +++ b/make/build.xml @@ -12,6 +12,8 @@ <target name="all.but-archives" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,test.compile,one.dir,tag.build" /> + <target name="all.ide" description="Build nativewindow, jogl and newt projects, including all junit tests, but don't copy libs or JARs or tag the build" depends="init,build.nativewindow,build.jogl,build.newt,test.compile" /> + <target name="test.compile"> <ant antfile="build-test.xml" target="test.compile" inheritRefs="true" inheritAll="true"/> </target> |