-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.bat
45 lines (38 loc) · 1.17 KB
/
run.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@ECHO OFF
REM run.bat : code_swarm launching script
REM need the config file as first parameter
REM TODO : take care of multiple parameters
SET params="%1"
set default_config="data/sample.config"
REM basic command line parameters check
IF %params%=="" (
REM asking user for a config file
ECHO Specify a config file, or type
SET /p params="ENTER for default one [%default_config%] : "
)
IF %params%=="" (
SET params=%default_config%
)
REM help requested ?
IF "%1"=="/?" goto help
IF "%1"=="/H" goto help
IF "%1"=="-h" goto help
IF "%1"=="--help" goto help
goto binaryCheck
:help
REM if help needed, print it and exit
echo usage: run configfile
echo data/sample.config is the default config file"
exit
:binaryCheck
REM checking for code_swarm java binaries
IF NOT EXIST dist\code_swarm.jar (
echo no code_swarm binaries !
echo needing to build it with 'ant' and 'javac' java-sdk
echo auto-trying the ant command...
call ant
)
REM running
REM echo %params%
echo code_swarm project !
java -Xmx1000m -classpath dist/code_swarm.jar;lib/core.jar;lib/xml.jar;lib/vecmath.jar;. code_swarm %params%