mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-05 14:10:49 +02:00
6 lines
218 B
CMake
6 lines
218 B
CMake
add_executable(HTTPSTimeServer src/HTTPSTimeServer.cpp)
|
|
target_link_libraries(HTTPSTimeServer PUBLIC Poco::NetSSL Poco::Util Poco::XML)
|
|
if(MSVC)
|
|
target_link_libraries(HTTPSTimeServer PRIVATE OpenSSL::applink)
|
|
endif()
|