15 lines
262 B
Batchfile
15 lines
262 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
REM tlstest.bat
|
|
|
|
set tlstest_bin=Debug\tlstest.exe
|
|
if not exist %tlstest_bin% exit /b 1
|
|
|
|
if "%srcdir%"=="" (
|
|
set srcdir=.
|
|
)
|
|
|
|
%tlstest_bin% %srcdir%\server.pem %srcdir%\server.pem %srcdir%\ca.pem
|
|
|
|
endlocal
|