Skip to content
Snippets Groups Projects
Commit 274f9323 authored by Steve Holme's avatar Steve Holme
Browse files

build-openssl.bat: Added check for OpenSSL source directory

parent 0c467c9c
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,9 @@ rem ***************************************************************************
rem Check we have Visual Studio installed
if not exist "%PF%\%VC_PATH%" goto novc
rem Check the start directory exists
if not exist "%START_DIR%" goto noopenssl
:configure
if "%BUILD_PLATFORM%" == "" (
......@@ -282,7 +285,7 @@ rem ***************************************************************************
echo.
echo Other:
echo.
echo directory - Specifies the openssl directory
echo directory - Specifies the OpenSSL source directory
goto error
:unknown
......@@ -305,11 +308,16 @@ rem ***************************************************************************
echo Error: %VC_DESC% is not installed
goto error
:nox64
echo.
echo Error: %VC_DESC% does not support 64-bit builds
goto error
:nox64
echo.
echo Error: %VC_DESC% does not support 64-bit builds
goto error
:noopenssl
echo.
echo Error: Cannot locate OpenSSL source directory
goto error
:error
if "%OS%" == "Windows_NT" endlocal
exit /B 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment