diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/CMakeLists.txt | 5 | ||||
-rw-r--r-- | protocols/IRCG/CMakeLists.txt | 1 | ||||
-rw-r--r-- | protocols/IcqOscarJ/CMakeLists.txt | 1 | ||||
-rw-r--r-- | protocols/JabberG/CMakeLists.txt | 2 | ||||
-rw-r--r-- | protocols/MSN/CMakeLists.txt | 2 | ||||
-rw-r--r-- | protocols/Steam/CMakeLists.txt | 1 |
6 files changed, 6 insertions, 6 deletions
diff --git a/protocols/CMakeLists.txt b/protocols/CMakeLists.txt index e3c6bfff44..d9360f7a01 100644 --- a/protocols/CMakeLists.txt +++ b/protocols/CMakeLists.txt @@ -14,11 +14,8 @@ add_subdirectory(MSN) #add_subdirectory(Omegle) #add_subdirectory(Sametime) add_subdirectory(SkypeWeb) -#add_subdirectory(Slack) add_subdirectory(Steam) -#add_subdirectory(Telegram) #add_subdirectory(Tlen) #add_subdirectory(Tox) add_subdirectory(Twitter) -add_subdirectory(VKontakte) -#add_subdirectory(WhatsApp)
\ No newline at end of file +add_subdirectory(VKontakte)
\ No newline at end of file diff --git a/protocols/IRCG/CMakeLists.txt b/protocols/IRCG/CMakeLists.txt index a281099459..9f37dca7f3 100644 --- a/protocols/IRCG/CMakeLists.txt +++ b/protocols/IRCG/CMakeLists.txt @@ -1,4 +1,5 @@ file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc") set(TARGET IRC) include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) +target_link_libraries(${TARGET} ws2_32.lib) add_subdirectory(proto_irc)
\ No newline at end of file diff --git a/protocols/IcqOscarJ/CMakeLists.txt b/protocols/IcqOscarJ/CMakeLists.txt index f5c241229b..c5feb2c951 100644 --- a/protocols/IcqOscarJ/CMakeLists.txt +++ b/protocols/IcqOscarJ/CMakeLists.txt @@ -1,5 +1,6 @@ file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc") set(TARGET ICQ) include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) +target_link_libraries(${TARGET} comctl32.lib ws2_32.lib) add_subdirectory(proto_icq) add_subdirectory(icq_xstatus)
\ No newline at end of file diff --git a/protocols/JabberG/CMakeLists.txt b/protocols/JabberG/CMakeLists.txt index 257a4cd8ae..65f5bb3a66 100644 --- a/protocols/JabberG/CMakeLists.txt +++ b/protocols/JabberG/CMakeLists.txt @@ -2,6 +2,6 @@ file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc") set(TARGET Jabber) include_directories(${CMAKE_SOURCE_DIR}/libs/libaxolotl/src) include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) -target_link_libraries(${TARGET} Zlib libaxolotl libeay32.lib ssleay32.lib) +target_link_libraries(${TARGET} Zlib libaxolotl ${OPENSSL_LIBRARIES} comctl32.lib UxTheme.lib ws2_32.lib) add_subdirectory(jabber_xstatus) add_subdirectory(proto_jabber)
\ No newline at end of file diff --git a/protocols/MSN/CMakeLists.txt b/protocols/MSN/CMakeLists.txt index a3984234ef..58e247810b 100644 --- a/protocols/MSN/CMakeLists.txt +++ b/protocols/MSN/CMakeLists.txt @@ -1,5 +1,5 @@ file(GLOB SOURCES "src/*.h" "src/skylogin/*.h" "src/*.cpp" "src/*.c" "src/skylogin/*.c" "res/*.rc") set(TARGET MSN) include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) -target_link_libraries(${TARGET} libeay32.lib) +target_link_libraries(${TARGET} libjson ${OPENSSL_LIBRARIES} comctl32.lib) add_subdirectory(proto_msn)
\ No newline at end of file diff --git a/protocols/Steam/CMakeLists.txt b/protocols/Steam/CMakeLists.txt index 4f76cb5bf9..9dacd1a586 100644 --- a/protocols/Steam/CMakeLists.txt +++ b/protocols/Steam/CMakeLists.txt @@ -1,4 +1,5 @@ file(GLOB SOURCES "src/*.h" "src/api/*.h" "src/*.cpp" "res/*.rc") set(TARGET Steam) include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) +target_link_libraries(${TARGET} libjson comctl32.lib) add_subdirectory(proto_steam)
\ No newline at end of file |