File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
- IF " %PYTHON_VERSION% " == " 2.7" (exit 0)
2
-
3
1
mkdir src
4
2
cd src
5
3
@@ -13,8 +11,8 @@ cmake ..\libssh ^
13
11
-DOPENSSL_ROOT_DIR=%OPENSSL_DIR%
14
12
15
13
16
- cp %OPENSSL_DIR% \lib\VC\libcrypto %PYTHON_ARCH% MD .lib %APPVEYOR_BUILD_FOLDER%
17
- cp %OPENSSL_DIR% \lib\VC\libssl %PYTHON_ARCH% MD .lib %APPVEYOR_BUILD_FOLDER%
14
+ cp %OPENSSL_DIR% \lib\VC\x64\MD\libcrypto .lib %APPVEYOR_BUILD_FOLDER%
15
+ cp %OPENSSL_DIR% \lib\VC\x64\MD\libssl .lib %APPVEYOR_BUILD_FOLDER%
18
16
19
17
cmake --build . --config Release
20
18
cmake --install . --prefix ../local
Original file line number Diff line number Diff line change 42
42
_arch = platform .architecture ()[0 ][0 :2 ]
43
43
_libs = ['ssh' ] if not ON_WINDOWS else [
44
44
'ssh' , 'Ws2_32' , 'user32' ,
45
- 'libcrypto%sMD' % _arch , 'libssl%sMD' % _arch ,
45
+ 'libcrypto' , 'libssl' ,
46
46
'zlibstatic' ,
47
47
]
48
48
You can’t perform that action at this time.
0 commit comments