blob: e484ad215e86baebf12aaaa70ba1d56d0edaac54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
@echo off
cd /d "%TEMP%"
rd /s /q openssl
mkdir openssl
cd /d openssl
perl "%OPENSSL_ROOT_DIR%\Configure" shared VC-WIN64A
call %VS141COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvars64.bat
nmake
copy libcrypto-1_1.mir %MIRANDA_BUILD_ROOT%\pre-build\bin15\64\Libs
copy libssl-1_1.mir %MIRANDA_BUILD_ROOT%\pre-build\bin15\64\Libs
copy libcrypto-1_1.pdb %MIRANDA_BUILD_ROOT%\pre-symbols\bin15\64
copy libssl-1_1.pdb %MIRANDA_BUILD_ROOT%\pre-symbols\bin15\64
copy libcrypto-1_1.mir %MIRANDA_DEV_ROOT%\bin15\Release64\Libs
copy libcrypto-1_1.pdb %MIRANDA_DEV_ROOT%\bin15\Release64\Libs
copy libssl-1_1.mir %MIRANDA_DEV_ROOT%\bin15\Release64\Libs
copy libssl-1_1.pdb %MIRANDA_DEV_ROOT%\bin15\Release64\Libs
copy libcrypto-1_1.mir %MIRANDA_DEV_ROOT%\bin15\Debug64\Libs
copy libcrypto-1_1.pdb %MIRANDA_DEV_ROOT%\bin15\Debug64\Libs
copy libssl-1_1.mir %MIRANDA_DEV_ROOT%\bin15\Debug64\Libs
copy libssl-1_1.pdb %MIRANDA_DEV_ROOT%\bin15\Debug64\Libs
copy libcrypto-1_1.mir %MIRANDA_DEV_ROOT%\bin16\Release64\Libs
copy libcrypto-1_1.pdb %MIRANDA_DEV_ROOT%\bin16\Release64\Libs
copy libssl-1_1.mir %MIRANDA_DEV_ROOT%\bin16\Release64\Libs
copy libssl-1_1.pdb %MIRANDA_DEV_ROOT%\bin16\Release64\Libs
copy libcrypto-1_1.mir %MIRANDA_DEV_ROOT%\bin16\Debug64\Libs
copy libcrypto-1_1.pdb %MIRANDA_DEV_ROOT%\bin16\Debug64\Libs
copy libssl-1_1.mir %MIRANDA_DEV_ROOT%\bin16\Debug64\Libs
copy libssl-1_1.pdb %MIRANDA_DEV_ROOT%\bin16\Debug64\Libs
copy libcrypto-1_1.mir %MIRANDA_DEV_ROOT%\bin17\Release64\Libs
copy libcrypto-1_1.pdb %MIRANDA_DEV_ROOT%\bin17\Release64\Libs
copy libssl-1_1.mir %MIRANDA_DEV_ROOT%\bin17\Release64\Libs
copy libssl-1_1.pdb %MIRANDA_DEV_ROOT%\bin17\Release64\Libs
copy libcrypto-1_1.mir %MIRANDA_DEV_ROOT%\bin17\Debug64\Libs
copy libcrypto-1_1.pdb %MIRANDA_DEV_ROOT%\bin17\Debug64\Libs
copy libssl-1_1.mir %MIRANDA_DEV_ROOT%\bin17\Debug64\Libs
copy libssl-1_1.pdb %MIRANDA_DEV_ROOT%\bin17\Debug64\Libs
|