diff options
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/CMakeLists.txt | 7 | ||||
-rw-r--r-- | protocols/JabberG/jabber_xstatus/CMakeLists.txt | 2 | ||||
-rw-r--r-- | protocols/JabberG/proto_jabber/CMakeLists.txt | 2 |
3 files changed, 11 insertions, 0 deletions
diff --git a/protocols/JabberG/CMakeLists.txt b/protocols/JabberG/CMakeLists.txt new file mode 100644 index 0000000000..257a4cd8ae --- /dev/null +++ b/protocols/JabberG/CMakeLists.txt @@ -0,0 +1,7 @@ +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) +add_subdirectory(jabber_xstatus) +add_subdirectory(proto_jabber)
\ No newline at end of file diff --git a/protocols/JabberG/jabber_xstatus/CMakeLists.txt b/protocols/JabberG/jabber_xstatus/CMakeLists.txt new file mode 100644 index 0000000000..9a16f9320c --- /dev/null +++ b/protocols/JabberG/jabber_xstatus/CMakeLists.txt @@ -0,0 +1,2 @@ +set(TARGET xStatus_Jabber) +include(${CMAKE_SOURCE_DIR}/cmake/icons.cmake)
\ No newline at end of file diff --git a/protocols/JabberG/proto_jabber/CMakeLists.txt b/protocols/JabberG/proto_jabber/CMakeLists.txt new file mode 100644 index 0000000000..855e7aa315 --- /dev/null +++ b/protocols/JabberG/proto_jabber/CMakeLists.txt @@ -0,0 +1,2 @@ +set(TARGET Proto_Jabber) +include(${CMAKE_SOURCE_DIR}/cmake/icons.cmake)
\ No newline at end of file |