mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-02 13:30:44 -05:00
copy vcredist_x86.exe to the release/debug directories
This commit is contained in:
parent
8748cdc7c2
commit
abb14a2c2b
1 changed files with 27 additions and 0 deletions
|
|
@ -57,4 +57,31 @@ echo Copying the OpenSSL DLL.
|
|||
copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Release\
|
||||
copy ..\..\openssl-0.9.8d\out32dll\libeay32.dll ..\Build\Debug
|
||||
|
||||
if Defined FrameworkSDKDir (
|
||||
|
||||
rem
|
||||
rem vcredist_x86.exe path relative to FrameworkSDKDir
|
||||
rem
|
||||
|
||||
set vcredist=BootStrapper\Packages\vcredist_x86\vcredist_x86.exe
|
||||
|
||||
if Exist "%FrameworkSDKDir%\%vcredist%" (
|
||||
|
||||
echo Copying Visual C x86 Redistributable Installer
|
||||
|
||||
rem
|
||||
rem Use /Y so we allways have the current version of the installer.
|
||||
rem
|
||||
|
||||
copy /Y "%FrameworkSDKDir%\%vcredist%" ..\Build\Release\
|
||||
copy /Y "%FrameworkSDKDir%\%vcredist%" ..\Build\Debug\
|
||||
|
||||
) else (
|
||||
echo "**** %FrameworkSDKDir%\%vcredist% not found ****"
|
||||
)
|
||||
) else (
|
||||
echo "**** Warning FrameworkSDKDir not defined ****"
|
||||
echo "**** Run vsvars32.bat ****"
|
||||
)
|
||||
|
||||
rem Done
|
||||
|
|
|
|||
Loading…
Reference in a new issue