aboutsummaryrefslogtreecommitdiff
path: root/src/dtf/dtf.cmd
blob: 6b55ecfe1002385caccc1a967a65983e1d6b6a67 (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 dtf %_C%

msbuild -Restore SfxCA\sfxca_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\dtf_sfxca.binlog || exit /b

msbuild -Restore -t:Pack dtf.sln -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\dtf_build.binlog || exit /b

@popd
@endlocal