summaryrefslogtreecommitdiff
path: root/cmake_msbuild.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmake_msbuild.cmd')
-rw-r--r--cmake_msbuild.cmd28
1 files changed, 28 insertions, 0 deletions
diff --git a/cmake_msbuild.cmd b/cmake_msbuild.cmd
new file mode 100644
index 0000000000..399b080f75
--- /dev/null
+++ b/cmake_msbuild.cmd
@@ -0,0 +1,28 @@
+:: Windows CMake has a dependency on desktop msbuild.exe because it generates
+:: Visual Studio *.vcxproj solutions.
+:: This file has cmake in its name to avoid accidentally introducing
+:: another dependency on desktop msbuild.exe
+@if not defined _echo @echo off
+setlocal
+
+set "__ProjectDir=%~dp0"
+
+call "%__ProjectDir%"\setup_vs_tools.cmd
+
+REM setup_vs_tools.cmd will correctly echo error message.
+if NOT '%ERRORLEVEL%' == '0' exit /b 1
+
+:: Clear the 'Platform' env variable for this session, as it's a per-project setting within the build, and
+:: misleading value (such as 'MCD' in HP PCs) may lead to build breakage (issue: #69).
+set Platform=
+set __ProjectDir=
+
+pushd %~dp0
+echo Running: msbuild.exe %*
+call msbuild.exe %*
+popd
+if NOT [%ERRORLEVEL%]==[0] (
+ exit /b 1
+)
+
+exit /b 0