aboutsummaryrefslogtreecommitdiff
path: root/src/ext/ext.cmd
blob: 0429f542607d01f3eac2004ca2d2113855fef5d9 (plain)
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
@setlocal
@pushd %~dp0

@set _C=Debug
:parse_args
@if /i "%1"=="release" set _C=Release
@if not "%1"=="" shift & goto parse_args

@echo ext build %_C%

:: These extensions must be built in this order.

:: Util
call Util\util.cmd %_C% || exit /b

:: Bal
call Bal\bal.cmd %_C% || exit /b

:: NetFx
call NetFx\netfx.cmd %_C% || exit /b


:: The rest of the extensions are in alphabetical order.

:: ComPlus
call ComPlus\complus.cmd %_C% || exit /b

:: Dependency
call Dependency\dependency.cmd %_C% || exit /b

:: DifxApp
call DifxApp\difxapp.cmd %_C% || exit /b

:: DirectX
call DirectX\directx.cmd %_C% || exit /b

:: Firewall
call Firewall\firewall.cmd %_C% || exit /b

:: Http
call Http\http.cmd %_C% || exit /b

:: Iis
call Iis\iis.cmd %_C% || exit /b

:: Msmq
call Msmq\msmq.cmd %_C% || exit /b

:: PowerShell
call PowerShell\ps.cmd %_C% || exit /b

:: Sql
call Sql\sql.cmd %_C% || exit /b

:: UI
call UI\ui.cmd %_C% || exit /b

:: VisualStudio
call VisualStudio\vs.cmd %_C% || exit /b

@popd
@endlocal