diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-08-11 12:11:26 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-08-11 12:11:26 +0200 |
commit | 3d8ccff2a698e62e112f58f8c329b77ae71b8cbd (patch) | |
tree | 67892ebc654ed9860eb3517c8913b23670aa211e /vcvars64.bat | |
parent | cb4c53adfa077477b1dd784b200e0a8f9fff2afc (diff) | |
parent | 148652fc7e5cdf14c30dd11be98e0d2e4c39d7bb (diff) |
Merge branch 'release/debian/3.1.4-1'debian/3.1.4-1
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
|