aboutsummaryrefslogtreecommitdiff
path: root/src/tools/tools.cmd
blob: 4764a8fe73d9e63414d9081972f74251ad5d32df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@setlocal
@pushd %~dp0

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

@echo Building tools %_C%

:: tools

nuget restore || exit /b

msbuild -t:Build -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\tools_build.binlog || exit /b

@popd
@endlocal