aboutsummaryrefslogtreecommitdiff
path: root/src/ext/ext.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/ext.cmd')
-rw-r--r--src/ext/ext.cmd53
1 files changed, 5 insertions, 48 deletions
diff --git a/src/ext/ext.cmd b/src/ext/ext.cmd
index 8575b81e..86aac47b 100644
--- a/src/ext/ext.cmd
+++ b/src/ext/ext.cmd
@@ -2,58 +2,15 @@
2@pushd %~dp0 2@pushd %~dp0
3 3
4@set _C=Debug 4@set _C=Debug
5@set _L=%~dp0..\..\build\logs
6@set _SuppressWixClean=false
7
5:parse_args 8:parse_args
6@if /i "%1"=="release" set _C=Release 9@if /i "%1"=="release" set _C=Release
10@if /i "%1"=="inc" set _SuppressWixClean=true
7@if not "%1"=="" shift & goto parse_args 11@if not "%1"=="" shift & goto parse_args
8 12
9@echo ext build %_C% 13msbuild ext_t.proj -p:Configuration=%_C% -p:SuppressWixClean=%_SuppressWixClean% -m -tl -nologo -warnaserror -bl:%_L%\ext_build.binlog || exit /b
10
11:: These extensions must be built in this order.
12
13:: Util
14call Util\util.cmd %_C% || exit /b
15
16:: Bal
17call Bal\bal.cmd %_C% || exit /b
18
19:: NetFx
20call NetFx\netfx.cmd %_C% || exit /b
21
22
23:: The rest of the extensions are in alphabetical order.
24
25:: ComPlus
26call ComPlus\complus.cmd %_C% || exit /b
27
28:: Dependency
29call Dependency\dependency.cmd %_C% || exit /b
30
31:: DirectX
32call DirectX\directx.cmd %_C% || exit /b
33
34:: Firewall
35call Firewall\firewall.cmd %_C% || exit /b
36
37:: Http
38call Http\http.cmd %_C% || exit /b
39
40:: Iis
41call Iis\iis.cmd %_C% || exit /b
42
43:: Msmq
44call Msmq\msmq.cmd %_C% || exit /b
45
46:: PowerShell
47call PowerShell\ps.cmd %_C% || exit /b
48
49:: Sql
50call Sql\sql.cmd %_C% || exit /b
51
52:: UI
53call UI\ui.cmd %_C% || exit /b
54
55:: VisualStudio
56call VisualStudio\vs.cmd %_C% || exit /b
57 14
58@popd 15@popd
59@endlocal 16@endlocal