diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-08-10 12:02:03 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-08-10 12:02:03 +0200 |
commit | 27df2893a39a9da083841e37c12fc24b2bdad80f (patch) | |
tree | 96f72afa6e9f48aaa63c13c6ef6f1a3944952bdc /vcvars64.bat | |
parent | 5f532f12bf9a32e4fe135280c22a12de32c8ebd3 (diff) | |
parent | ccfc550b12b142c11dcf4d249d086925af0443c4 (diff) |
Update upstream source from tag 'upstream/3.1.4'
Update to upstream version '3.1.4'
with Debian dir 999313211f5a9267c5c009361307a0af488a2c92
Diffstat (limited to 'vcvars64.bat')
-rwxr-xr-x | vcvars64.bat | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vcvars64.bat b/vcvars64.bat index 1e5f125..2d52742 100755 --- a/vcvars64.bat +++ b/vcvars64.bat @@ -2,7 +2,7 @@ REM Copy saved 64bit libraries into place, if present
REM iphlpapi.lib libeay32.dll libeay32.lib ssleay32.dll ssleay32.lib
REM Modify SAVLIB64 to a directory where these libs are saved.
-set SAVLIB64=lib\x64
+set SAVLIB64=lib64
IF NOT EXIST %SAVLIB64% GOTO NOSAVLIB
copy /Y %SAVLIB64%\*.lib lib
copy /Y %SAVLIB64%\*.dll util
@@ -20,6 +20,8 @@ set VCDIR=%VCINSTALLDIR% :HAVEDEF
REM Run MS 64bit vcvars
set VCBAT="%VCDIR%\bin\x86_amd64\vcvarsx86_amd64.bat"
+set VCBATDIR="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build"
+set VCBAT=%VCBATDIR%\vcvarsx86_amd64.bat
IF EXIST %VCBAT% GOTO RUNVC
echo "Cannot locate vcvars for amd64, please run it manually."
GOTO DONE
|