-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.bat
62 lines (60 loc) · 2.41 KB
/
build.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
vle.exe -P vle.reader clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.tester clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.discrete-time clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.extension.celldevs clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.extension.decision clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.extension.dsdevs clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.extension.fsa clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.extension.petrinet clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.ode clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.ode_test clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.discrete-time.decision clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.reader_test clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.extension.cellqss clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.discrete-time_test clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.examples clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.tester_test clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.discrete-time.decision_test clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P ext.lua clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P ext.muparser clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P ext.qwt clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P ext.shapelib clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P vle.adaptative-qss.examples clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P gvle.decision clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P gvle.discrete-time clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P gvle.simulating.plan clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
vle.exe -P gvle.forrester clean rclean configure build
if %ERRORLEVEL% NEQ 0 goto :ERROR
:EOF
echo Process completed
pause
exit
:ERROR
echo Failure
pause
exit /b %ERRORLEVEL%