Mohamed Amine Mzoughi
Mohamed Amine Mzoughi
You can comment that line (13 of HTTP/CMakeLists.txt) with a '#' or simply remove the whole line until I fix that issue. That line was added by a contributor to...
By the way, on Ubuntu 20.04 and CMake 3.16.3 (the one that you install with apt) there's no issue.
Google Test is only needed to run the tests. I think that your CMake script is missing something like "target_link_libraries(YOUR_BINARY httpclient ${CURL_LIBRARIES}) because your binary (program) is not linked (statically)...
curl is a program (like wget, you can use it in a terminal to download files) and libcurl-devel are the development files for libcurl (headers and compiled libraries for the...
Hi, I recommend you to use vcpkg https://github.com/microsoft/vcpkg and even in your other VS projects. In another repo, I wrote instructions related to vcpkg : https://github.com/embeddedmz/ftpclient-cpp Best regards.
I have to fix the CMakeLists.txt files, I'm working on it right now.
You have also a CMake option SKIP_TESTS_BUILD that you can set to false to have a unit test project in the solution generated by CMake... You can set that project...
Hello logidelic, You're welcome. Some insights to fix this issue : https://stackoverflow.com/questions/108183/how-to-prevent-sigpipes-or-handle-them-properly https://stackoverflow.com/questions/48229430/sigpipe-in-c-determining-which-tcp-socket-is-disconnected
Hello, That sounds good ! You can make a pull request and I will merge it. Thanks.
Merged ! Thanks ! Compiles and works fine under Ubuntu 18 but not under Centos 7 : the TLS_client_method() and TLS_server_method() are not available in the older versions of OpenSSL....