Set vtable offset as contained
[platform/upstream/coreclr.git] / cmake_msbuild.cmd
1 :: Windows CMake has a dependency on desktop msbuild.exe because it generates
2 :: Visual Studio *.vcxproj solutions.
3 :: This file has cmake in its name to avoid accidentally introducing
4 :: another dependency on desktop msbuild.exe
5 @if not defined _echo @echo off
6 setlocal
7
8 set "__ProjectDir=%~dp0"
9
10 call "%__ProjectDir%"\setup_vs_tools.cmd
11
12 REM setup_vs_tools.cmd will correctly echo error message.
13 if NOT '%ERRORLEVEL%' == '0' exit /b 1
14
15 :: Clear the 'Platform' env variable for this session, as it's a per-project setting within the build, and
16 :: misleading value (such as 'MCD' in HP PCs) may lead to build breakage (issue: #69).
17 set Platform=
18 set __ProjectDir=
19
20 pushd %~dp0
21 echo Running: msbuild.exe %*
22 call msbuild.exe %*
23 popd
24 if NOT [%ERRORLEVEL%]==[0] (
25   exit /b 1
26 )
27
28 exit /b 0