diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-04-06 22:46:30 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-04-08 22:36:23 +0100 |
commit | a4df34294f1e7437918935f0e611f1ef1c22a0fc (patch) | |
tree | 9517ae967db797d4a22a956f5d68146171606f04 /projects | |
parent | 089e2d9de0d278e32ab41822072e9a3d9d54e6bc (diff) | |
download | curl-a4df34294f1e7437918935f0e611f1ef1c22a0fc.tar.gz |
build-openssl.bat: Perform the install for each build type directly after the build
Diffstat (limited to 'projects')
-rw-r--r-- | projects/build-openssl.bat | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/projects/build-openssl.bat b/projects/build-openssl.bat index 5f849dd7d..f7b450aae 100644 --- a/projects/build-openssl.bat +++ b/projects/build-openssl.bat @@ -239,12 +239,16 @@ rem *************************************************************************** rem Configuring 64-bit Debug Build call :configure x64 debug - rem Perform the build + rem Perform the static library build call :build x64 static - call :build x64 shared - rem Perform the install + rem Perform the static library install call :install debug static + + rem Perform the 64-bit shared library build + call :build x64 shared + + rem Perform the shared library install call :install debug shared if "%BUILD_CONFIG%" == "debug" goto success @@ -253,12 +257,16 @@ rem *************************************************************************** rem Configuring 64-bit Release Build call :configure x64 release - rem Perform the build + rem Perform the static library build call :build x64 static - call :build x64 shared - rem Perform the install + rem Perform the static library install call :install release static + + rem Perform the shared library build + call :build x64 shared + + rem Perform the shared library install call :install release shared goto success @@ -274,12 +282,16 @@ rem *************************************************************************** rem Configuring 32-bit Debug Build call :configure x86 debug - rem Perform the build + rem Perform the static library build call :build x86 static - call :build x86 shared - rem Perform the install + rem Perform the static library install call :install debug static + + rem Perform the shared library build + call :build x86 shared + + rem Perform the shared library install call :install debug shared if "%BUILD_CONFIG%" == "debug" goto success @@ -288,12 +300,16 @@ rem *************************************************************************** rem Configuring 32-bit Release Build call :configure x86 release - rem Perform the build + rem Perform the static library build call :build x86 static - call :build x86 shared - rem Perform the install + rem Perform the static library install call :install release static + + rem Perform the shared library build + call :build x86 shared + + rem Perform the shared library install call :install release shared goto success |