| 14 |
set ARGON2_VERSION=20190702 |
set ARGON2_VERSION=20190702 |
| 15 |
set LIBRESSL_VERSION=3.4.2 |
set LIBRESSL_VERSION=3.4.2 |
| 16 |
|
|
| 17 |
if "%APPVEYOR%" == "" set NOPAUSE=1 |
if "%APPVEYOR%" == "True" set NOPAUSE=1 |
| 18 |
|
|
| 19 |
call :setup_tools_env |
call :setup_tools_env |
| 20 |
|
|
| 67 |
call :check_tools |
call :check_tools |
| 68 |
) |
) |
| 69 |
|
|
| 70 |
if "%NOPAUSE" == "" pause |
if not "%NOPAUSE%" == "1" pause |
| 71 |
exit 0 |
exit 0 |
| 72 |
|
|
| 73 |
|
|
| 223 |
set PERL=C:\cygwin\usr\bin\perl.exe |
set PERL=C:\cygwin\usr\bin\perl.exe |
| 224 |
if exist %PERL% exit /b 0 |
if exist %PERL% exit /b 0 |
| 225 |
echo perl not found |
echo perl not found |
| 226 |
if "%NOPAUSE" == "" pause |
if not "%NOPAUSE%" == "1" pause |
| 227 |
exit |
exit |
| 228 |
|
|
| 229 |
rem #################### |
rem #################### |
| 243 |
set SVN="%SVN_PATH%\svn.exe" |
set SVN="%SVN_PATH%\svn.exe" |
| 244 |
if exist %SVN% exit /b 0 |
if exist %SVN% exit /b 0 |
| 245 |
echo svn not found |
echo svn not found |
| 246 |
if "%NOPAUSE" == "" pause |
if not "%NOPAUSE%" == "1" pause |
| 247 |
exit |
exit |
| 248 |
|
|
| 249 |
rem #################### |
rem #################### |
| 262 |
set CMAKE="%CMAKE_PATH%\cmake.exe" |
set CMAKE="%CMAKE_PATH%\cmake.exe" |
| 263 |
if exist %CMAKE% exit /b 0 |
if exist %CMAKE% exit /b 0 |
| 264 |
echo cmake not found |
echo cmake not found |
| 265 |
if "%NOPAUSE" == "" pause |
if not "%NOPAUSE%" == "1" pause |
| 266 |
exit |
exit |
| 267 |
|
|
| 268 |
rem #################### |
rem #################### |
| 281 |
if exist %INNO_SETUP% exit /b 0 |
if exist %INNO_SETUP% exit /b 0 |
| 282 |
:search_iscc_not_found |
:search_iscc_not_found |
| 283 |
echo iscc(inno setup) not found |
echo iscc(inno setup) not found |
| 284 |
if "%NOPAUSE" == "" pause |
if not "%NOPAUSE%" == "1" pause |
| 285 |
exit |
exit |
| 286 |
|
|
| 287 |
rem #################### |
rem #################### |
| 302 |
:vs_not_found |
:vs_not_found |
| 303 |
echo Visual Studio not found |
echo Visual Studio not found |
| 304 |
echo VS_BASE=%VS_BASE% |
echo VS_BASE=%VS_BASE% |
| 305 |
if "%NOPAUSE" == "" pause |
if not "%NOPAUSE%" == "1" pause |
| 306 |
exit |
exit |
| 307 |
|
|
| 308 |
rem #################### |
rem #################### |