Browse Source
Merge pull request #734 from DeckerSU/dev-decker-dev
added missed SSL (https) support for building libcurl.lib and libcurl…
patch-3
jl777
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
1 deletions
-
.gitignore
-
marketmaker_build_depends.cmd
|
|
@ -259,3 +259,6 @@ build |
|
|
|
|
|
|
|
.idea |
|
|
|
Release/* |
|
|
|
|
|
|
|
build_win64_release/* |
|
|
|
DB/* |
|
|
|
|
|
@ -75,7 +75,7 @@ cd curl |
|
|
|
mkdir build_msvc_2015_win32 |
|
|
|
mkdir build_msvc_2015_win64 |
|
|
|
cd build_msvc_2015_win64 |
|
|
|
cmake -G "Visual Studio 14 2015 Win64" .. |
|
|
|
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_USE_WINSSL:BOOL=ON .. |
|
|
|
cmake --build . --config Release --target libcurl |
|
|
|
|
|
|
|
rem cmake .. -G"Visual Studio 14 2015 Win64" -DCURL_STATICLIB=ON -DCURL_DISABLE_LDAP=ON -DCURL_STATIC_CRT=ON |
|
|
|