diff options
author | Vitaly Svyastyn <protomors@gmail.com> | 2017-10-31 13:32:16 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-31 14:32:16 +0300 |
commit | 4d9bf8032dd659e091394d688b6a2c59bf222240 (patch) | |
tree | 517f405276c562044b8f7f32a9475e4bac7cf94e /protocols/FacebookRM | |
parent | 9437834f8f4d3abf32a8629747385d666c652084 (diff) |
Initial CMake support. (#1013)
* CMake files for building application and core library.
* CMake files for core plugins. Now it runs!
* CMake files for some plugins.
Diffstat (limited to 'protocols/FacebookRM')
-rw-r--r-- | protocols/FacebookRM/CMakeLists.txt | 5 | ||||
-rw-r--r-- | protocols/FacebookRM/proto_facebook/CMakeLists.txt | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/protocols/FacebookRM/CMakeLists.txt b/protocols/FacebookRM/CMakeLists.txt new file mode 100644 index 0000000000..6441c53332 --- /dev/null +++ b/protocols/FacebookRM/CMakeLists.txt @@ -0,0 +1,5 @@ +file(GLOB SOURCES "src/*.h" "src/requests/*.h" "src/*.cpp" "res/*.rc" "${CMAKE_SOURCE_DIR}/utils/std_string_utils.cpp") +set(TARGET Facebook) +include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) +target_link_libraries(${TARGET} libjson) +add_subdirectory(proto_facebook)
\ No newline at end of file diff --git a/protocols/FacebookRM/proto_facebook/CMakeLists.txt b/protocols/FacebookRM/proto_facebook/CMakeLists.txt new file mode 100644 index 0000000000..be5f194172 --- /dev/null +++ b/protocols/FacebookRM/proto_facebook/CMakeLists.txt @@ -0,0 +1,2 @@ +set(TARGET Proto_Facebook) +include(${CMAKE_SOURCE_DIR}/cmake/icons.cmake)
\ No newline at end of file |