Lines Matching refs:SET
7 SET msbuild_version=%1
9 SET msbuild_platform=%2
10 IF "%msbuild_platform%" == "" SET msbuild_platform=x64
12 SET msbuild_configuration=%3
13 IF "%msbuild_configuration%" == "" SET msbuild_configuration=Release
15 SET msbuild_toolset=%4
31 SET msbuild="%windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
32 SET msbuild_vs2017community="%programfiles(x86)%\Microsoft Visual Studio\2017\Community\MSBuild\15.…
33 SET msbuild_vs2017professional="%programfiles(x86)%\Microsoft Visual Studio\2017\Professional\MSBui…
34 SET msbuild_vs2017enterprise="%programfiles(x86)%\Microsoft Visual Studio\2017\Enterprise\MSBuild\1…
35 IF %msbuild_version% == VS2013 SET msbuild="%programfiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe"
36 IF %msbuild_version% == VS2015 SET msbuild="%programfiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe"
37 IF %msbuild_version% == VS2017Community SET msbuild=%msbuild_vs2017community%
38 IF %msbuild_version% == VS2017Professional SET msbuild=%msbuild_vs2017professional%
39 IF %msbuild_version% == VS2017Enterprise SET msbuild=%msbuild_vs2017enterprise%
41 IF EXIST %msbuild_vs2017community% SET msbuild=%msbuild_vs2017community%
42 IF EXIST %msbuild_vs2017professional% SET msbuild=%msbuild_vs2017professional%
43 IF EXIST %msbuild_vs2017enterprise% SET msbuild=%msbuild_vs2017enterprise%
46 SET project="%~p0\..\VS2010\zstd.sln"
48 SET msbuild_params=/verbosity:minimal /nologo /t:Clean,Build /p:Platform=%msbuild_platform% /p:Conf…
49 IF NOT "%msbuild_toolset%" == "" SET msbuild_params=%msbuild_params% /p:PlatformToolset=%msbuild_to…
51 SET output=%~p0%bin
52 SET output="%output%/%msbuild_configuration%/%msbuild_platform%/"
53 SET msbuild_params=%msbuild_params% /p:OutDir=%output%