From 43be1c7a6a2aedcd8eed4a204bf98bae91b4481f Mon Sep 17 00:00:00 2001 From: Ben Lubar Date: Mon, 14 May 2018 14:15:38 -0500 Subject: [PATCH] Make the win64 build/install batch files work with non-C system drives. --- build/win64/build-debug.bat | 4 ++-- build/win64/build-release.bat | 4 ++-- build/win64/install-debug.bat | 4 ++-- build/win64/install-release.bat | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build/win64/build-debug.bat b/build/win64/build-debug.bat index f53df9063..08ef6d3a9 100644 --- a/build/win64/build-debug.bat +++ b/build/win64/build-debug.bat @@ -1,4 +1,4 @@ -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 +call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 cd VC2015 msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj -cd .. \ No newline at end of file +cd .. diff --git a/build/win64/build-release.bat b/build/win64/build-release.bat index 551e27b69..dfeb108b3 100644 --- a/build/win64/build-release.bat +++ b/build/win64/build-release.bat @@ -1,5 +1,5 @@ -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 +call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 cd VC2015 msbuild /m /p:Platform=x64 /p:Configuration=Release ALL_BUILD.vcxproj cd .. -pause \ No newline at end of file +pause diff --git a/build/win64/install-debug.bat b/build/win64/install-debug.bat index 0b8758461..34668945c 100644 --- a/build/win64/install-debug.bat +++ b/build/win64/install-debug.bat @@ -1,4 +1,4 @@ -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 +call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 cd VC2015 msbuild /m /p:Platform=x64 /p:Configuration=RelWithDebInfo INSTALL.vcxproj -cd .. \ No newline at end of file +cd .. diff --git a/build/win64/install-release.bat b/build/win64/install-release.bat index 8c0b8a83d..24acd5de8 100644 --- a/build/win64/install-release.bat +++ b/build/win64/install-release.bat @@ -1,4 +1,4 @@ -call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 +call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 cd VC2015 msbuild /m /p:Platform=x64 /p:Configuration=Release INSTALL.vcxproj -cd .. \ No newline at end of file +cd ..