mirror of
https://github.com/pocoproject/poco.git
synced 2025-08-14 06:08:16 +02:00
5 lines
201 B
CMake
5 lines
201 B
CMake
add_executable(download-ssl src/download.cpp)
|
|
target_link_libraries(download-ssl PUBLIC Poco::NetSSL Poco::Util Poco::XML)
|
|
if(MSVC)
|
|
target_link_libraries(download-ssl PRIVATE OpenSSL::applink)
|
|
endif() |