1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

Remove conversiontimeout attribute, which is ignored by antlr3-ant task

This commit is contained in:
Kevin Glynn 2011-03-25 13:32:50 +01:00
parent 0a4758a9dd
commit 464f69e2f7

View File

@ -136,23 +136,23 @@
<target name="buildgrammars" description="invokes ANTLR to convert grammar files to C# source">
<ant-antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr" verbose="true"
target="${cs2j.parser.dir}/cs.g"
make="true" conversiontimeout="15000" />
make="true" />
<ant-antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr" verbose="true"
target="${cs2j.transform.dir}/TemplateExtracter.g"
libdirectory="${cs2j.parser.dir}"
make="true" conversiontimeout="15000" />
make="true" />
<ant-antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr" verbose="true"
target="${cs2j.transform.dir}/JavaMaker.g"
libdirectory="${cs2j.parser.dir}"
make="true" conversiontimeout="15000" />
make="true" />
<ant-antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr" verbose="true"
target="${cs2j.transform.dir}/NetMaker.g"
libdirectory="${cs2j.parser.dir}"
make="true" conversiontimeout="15000" />
make="true" />
<ant-antlr3 xmlns:antlr="antlib:org/apache/tools/ant/antlr" verbose="true"
target="${cs2j.transform.dir}/JavaPrettyPrint.g"
libdirectory="${cs2j.parser.dir}"
make="true" conversiontimeout="15000" />
make="true" />
</target>
<target name="switch" description="switched to release branch">