Ant build.xml: rename antlr3.gen.dir property to build.antlr3.dir

This commit is contained in:
Sam Harwell 2013-01-06 15:17:39 -06:00
parent f2ae1ef204
commit dfb2143077
1 changed files with 7 additions and 7 deletions

View File

@ -16,8 +16,8 @@
<path id="cp.antlr3" path="${antlr3.jar}"/> <path id="cp.antlr3" path="${antlr3.jar}"/>
<!-- Create the build directory structure used by compile --> <!-- Create the build directory structure used by compile -->
<property name="antlr3.gen.dir" value="${build.dir}/generated-sources/antlr3" /> <property name="build.antlr3.dir" value="${build.dir}/generated-sources/antlr3" />
<mkdir dir="${antlr3.gen.dir}" /> <mkdir dir="${build.antlr3.dir}" />
</target> </target>
<target name="build-init" depends="basic-init"> <target name="build-init" depends="basic-init">
@ -43,7 +43,7 @@
<arg value="-verbose"/> <arg value="-verbose"/>
<arg value="-make"/> <arg value="-make"/>
<arg value="-o"/> <arg value="-o"/>
<arg value="${antlr3.gen.dir}/org/antlr/v4/parse"/> <arg value="${build.antlr3.dir}/org/antlr/v4/parse"/>
<arg value="ANTLRParser.g"/> <arg value="ANTLRParser.g"/>
<arg value="ANTLRLexer.g"/> <arg value="ANTLRLexer.g"/>
<arg value="ActionSplitter.g"/> <arg value="ActionSplitter.g"/>
@ -63,9 +63,9 @@
<arg value="-verbose"/> <arg value="-verbose"/>
<arg value="-make"/> <arg value="-make"/>
<arg value="-o"/> <arg value="-o"/>
<arg value="${antlr3.gen.dir}/org/antlr/v4/codegen"/> <arg value="${build.antlr3.dir}/org/antlr/v4/codegen"/>
<arg value="-lib"/> <arg value="-lib"/>
<arg value="${antlr3.gen.dir}/org/antlr/v4/parse"/> <arg value="${build.antlr3.dir}/org/antlr/v4/parse"/>
<arg value="SourceGenTriggers.g"/> <arg value="SourceGenTriggers.g"/>
<classpath> <classpath>
<path refid="cp.antlr3"/> <path refid="cp.antlr3"/>
@ -89,7 +89,7 @@
<path refid="cp.antlr3"/> <path refid="cp.antlr3"/>
<pathelement location="${basedir}/runtime/Java/lib/org.abego.treelayout.core.jar"/> <pathelement location="${basedir}/runtime/Java/lib/org.abego.treelayout.core.jar"/>
</classpath> </classpath>
<src path="${basedir}/tool/src:${basedir}/runtime/Java/src:${antlr3.gen.dir}"/> <src path="${basedir}/tool/src:${basedir}/runtime/Java/src:${build.antlr3.dir}"/>
</javac> </javac>
</target> </target>
@ -132,7 +132,7 @@
<include name="**/*.st"/> <include name="**/*.st"/>
<include name="**/*.stg"/> <include name="**/*.stg"/>
</fileset> </fileset>
<fileset dir="${antlr3.gen.dir}"/> <fileset dir="${build.antlr3.dir}"/>
</copy> </copy>
<copy todir="${install.root.dir}"> <copy todir="${install.root.dir}">