mirror of
https://github.com/pocoproject/poco.git
synced 2025-08-13 22:04:23 +02:00
6 lines
194 B
CMake
6 lines
194 B
CMake
add_executable(genrsakey src/genrsakey.cpp)
|
|
target_link_libraries(genrsakey PUBLIC Poco::Crypto Poco::Util Poco::XML)
|
|
if(MSVC)
|
|
target_link_libraries(genrsakey PRIVATE OpenSSL::applink)
|
|
endif()
|