-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from moosetechnology/update-bat
Update bat
- Loading branch information
Showing
1 changed file
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
@echo off | ||
setlocal ENABLEDELAYEDEXPANSION | ||
|
||
rem Directory for verveine source | ||
set ROOT=%~dp0% | ||
set BASELIB=%ROOT%lib | ||
rem Directory for Verveine source | ||
set "ROOT=%~dp0" | ||
set "BASELIB=%ROOT%lib" | ||
|
||
rem JVM options e.g. -Xmx2500m to augment maximum memory size of the vm to 2.5Go. | ||
set JOPT="-Xmx16000m" | ||
set "JOPT=-Xmx16000m" | ||
|
||
rem Verveine option | ||
rem set VOPT="." | ||
rem set "VOPT=." | ||
|
||
FOR /R %BASELIB% %%G IN (*.jar) DO set LOCALCLASSPATH=%%G;!LOCALCLASSPATH! | ||
set CLASSPATH=%CLASSPATH%;%LOCALCLASSPATH% | ||
FOR /R "%BASELIB%" %%G IN (*.jar) DO set "LOCALCLASSPATH=%%G;!LOCALCLASSPATH!" | ||
set "CLASSPATH=%CLASSPATH%;%LOCALCLASSPATH%" | ||
|
||
|
||
java -Dfile.encoding=UTF-8 %JOPT% fr.inria.verveine.extractor.java.VerveineJMain %* |