Replies: 2 comments
-
Then I use conan to install poco, and failed too.
CMakeLitsts.txt: cmake_minimum_required(VERSION 3.5)
project(<project-name> VERSION 0.0.2)
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
add_executable(${PROJECT_NAME} <srcs>})
target_link_libraries(${PROJECT_NAME}
PRIVATE
${CONAN_LIBS}
) Link error:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
This issue is stale because it has been open for 365 days with no activity. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've used vcpkg to install
poco[core,netssl]
.cmakelists.txt
When I use
HTTPSClientSession
, cmake build failed:I check the link command and I find there's no netsslwind.lib linked. BTW the netsslwind.lib file exists. So I want to know how to use HTTPSClientSession?
Beta Was this translation helpful? Give feedback.
All reactions