diff options
author | Sven Gothel <[email protected]> | 2023-09-05 02:56:12 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-09-05 02:56:12 +0200 |
commit | 29c9bc1bc6560f40d011a5e3ea66f085a710265e (patch) | |
tree | b1bbacefb72a1377972953ac18cb6a9b3df441de /make | |
parent | ddd6cac8cc658ce542cb98e85f7d262f9917d37a (diff) |
make/build.xml: Add target 'all.but-onejar', allowing a quick build w/o the all-jar files as usable with atomic jars like: make/scripts/tests.sh `USE_BUILDDIR=1`
Diffstat (limited to 'make')
-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 27f06ff51..cb02fa294 100644 --- a/make/build.xml +++ b/make/build.xml @@ -14,6 +14,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,build.graphui,build.oculusvr,one.dir,tag.build,test.compile" /> + <target name="all.but-onejar" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,build.graphui,build.oculusvr,test.compile" /> + <target name="all.ide" description="Debug IDE build nativewindow, jogl and newt projects, including all junit tests, but don't tag the build or create archives" depends="init.debug,build.nativewindow,build.jogl,build.newt,build.graphui,build.oculusvr,one.dir,test.compile" /> <target name="test.compile"> |