Skip to content

Commit

Permalink
Make the win64 build/install batch files work with non-C system drives.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLubar committed May 14, 2018
1 parent e04029c commit 43be1c7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/win64/build-debug.bat
Original file line number Diff line number Diff line change
@@ -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 ..
cd ..
4 changes: 2 additions & 2 deletions build/win64/build-release.bat
Original file line number Diff line number Diff line change
@@ -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
pause
4 changes: 2 additions & 2 deletions build/win64/install-debug.bat
Original file line number Diff line number Diff line change
@@ -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 ..
cd ..
4 changes: 2 additions & 2 deletions build/win64/install-release.bat
Original file line number Diff line number Diff line change
@@ -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 ..
cd ..

0 comments on commit 43be1c7

Please sign in to comment.