mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-05 14:10:49 +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() |