You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
366 B
14 lines
366 B
@echo off
|
|
|
|
setlocal
|
|
|
|
IF "%ANTLR_HOME%" == "" SET ANTLR_HOME=%~d0%~p0..\..\..
|
|
|
|
"%JAVA_HOME%\bin\java" ^
|
|
-Dfile.encoding=UTF-8 ^
|
|
-classpath "%ANTLR_HOME%\tool\target\classes;%ANTLR_HOME%\runtime\Java\target\classes;%ANTLR_HOME%\lib\antlr-3.0.jar;%ANTLR_HOME%\lib\antlr-2.7.7.jar;%ANTLR_HOME%\lib\stringtemplate-3.0.jar" ^
|
|
org.antlr.Tool ^
|
|
%*
|
|
|
|
endlocal
|