blob: 2cc5623943462bde1d60ab56a6e8f4ecd84d0501 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@setlocal
@pushd %~dp0
@set _C=Debug
:parse_args
@if /i "%1"=="release" set _C=Release
@if not "%1"=="" shift & goto parse_args
@echo Building libs %_C%
msbuild -Restore libs_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\libs_build.binlog || exit /b
msbuild dutil\test\DutilUnitTest -t:Test -p:Configuration=%_C% -nologo || exit /b
@popd
@endlocal
|