blob: ddc2e1d6baec5bb06dd41f5a1ca09ed3a0d12bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@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 -bl:..\..\build\logs\libs_build.binlog || exit /b
@popd
@endlocal
|