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