summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorMataes <mataes2007@gmail.com>2017-11-30 08:38:37 +0300
committerGitHub <noreply@github.com>2017-11-30 08:38:37 +0300
commitc3e40028c06d76a4fd20255c6dd39bcce3f7b229 (patch)
treeb28e593dfbe75d625761636c39e0ec0b1dd44d8e /protocols
parent0a95d1c9e2791898c03eab04a06932ec65f3a934 (diff)
parentb1103b6eb24f654e2e2666b0c86a6206920fd23a (diff)
Merge pull request #1046 from protomors/cmake-update
Cmake updates
Diffstat (limited to 'protocols')
-rw-r--r--protocols/CMakeLists.txt5
-rw-r--r--protocols/IRCG/CMakeLists.txt1
-rw-r--r--protocols/IcqOscarJ/CMakeLists.txt1
-rw-r--r--protocols/JabberG/CMakeLists.txt2
-rw-r--r--protocols/MSN/CMakeLists.txt2
-rw-r--r--protocols/Steam/CMakeLists.txt1
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