diff options
author | wisberg <wisberg> | 2003-05-14 05:18:43 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-14 05:18:43 +0000 |
commit | 9e7320338b4af3f448ba4be0e9f3b428bcd89117 (patch) | |
tree | af278dab1e1b7e8d87dba938d505f182a3b69c42 /tests/product/build-aspectj | |
parent | 39ae7eb50e43acfe91d5fefde79b1300e90a54df (diff) | |
download | aspectj-9e7320338b4af3f448ba4be0e9f3b428bcd89117.tar.gz aspectj-9e7320338b4af3f448ba4be0e9f3b428bcd89117.zip |
variable renaming, verbosity - not much significant
Diffstat (limited to 'tests/product/build-aspectj')
-rw-r--r-- | tests/product/build-aspectj/build.xml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/tests/product/build-aspectj/build.xml b/tests/product/build-aspectj/build.xml index e1007c2bd..aea52183a 100644 --- a/tests/product/build-aspectj/build.xml +++ b/tests/product/build-aspectj/build.xml @@ -27,20 +27,22 @@ Setup: - Variables ASPECTJ_HOME and ASPECTJ_SRC refer to the + Variables ASPECTJ_HOME and ASPECTJ_MODULES refer to the base of an AspectJ install and the modules directory of the AspectJ source tree. By default they are - ASPECTJ_SRC: $${basedir}/../.. + ASPECTJ_MODULES: $${basedir}/../.. ASPECTJ_HOME: $${basedir}/../../aj-build/dist/tools which assumes the tools dist is built and this - runs from modules/tests/product/build-aspectj + runs from modules/tests/product/build-aspectj. + + To disable verbose mode, set iajc.verbose to false. You can also define the properties to run on any distribution from anywhere: - ant -DASPECTJ_HOME=dev/tools/aj -DASPECTJ_SRC=ec + ant -DASPECTJ_HOME=dev/tools/aj -DASPECTJ_MODULES=ec </echo> </target> @@ -60,14 +62,14 @@ <target name="init.variables" description="init variables"> - <property name="verbose" value="false"/> + <property name="iajc.verbose" value="true"/> <!-- build.compiler value to pick up our CompilerAdapter for javac --> <property name="ajc.adapter" value="org.aspectj.tools.ant.taskdefs.Ajc11CompilerAdapter"/> <!-- required directories - run from examples or predefine --> - <property name="ASPECTJ_SRC" + <property name="ASPECTJ_MODULES" location="${basedir}/../../.."/> <property name="ASPECTJ_HOME" @@ -93,7 +95,7 @@ property="aspectjrt.jar.available"/> <property name="aspectj.src" - location="${ASPECTJ_SRC}"/> + location="${ASPECTJ_MODULES}"/> <property name="output.aspectjtools" location="${output.dir}/aspectjtools.jar"/> @@ -175,6 +177,7 @@ <target name="build-runtime" depends="init"> <iajc outjar="${output.aspectjrt}" classpath="${aspectjrt.jar}" + verbose="${iajc.verbose}" sourcerootsref="runtime.roots"/> </target> @@ -184,7 +187,7 @@ <target name="build-tools" depends="init"> <iajc outjar="${output.aspectjtools}" - verbose="${verbose}" + verbose="${iajc.verbose}" sourcerootsref="tools.roots" sourcerootcopyfilter="**/CVS/*,**/*.java,**/*.aj"> <classpath> |