diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2019-02-01 04:11:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-02-01 17:16:43 -0800 |
commit | a1ffe115cfb27bd0dd57bf5266c7d37d9ce64dab (patch) | |
tree | 6589e06ecce1d0c461900fd2537bf5125afadf9d /desktop-widgets/plugins/facebook/CMakeLists.txt | |
parent | 0c07b02974a65608d7d71ef150d322678ec1170b (diff) | |
download | subsurface-a1ffe115cfb27bd0dd57bf5266c7d37d9ce64dab.tar.gz |
facebook: remove the featute from the code base
Remove from:
- unit tests
- desktop widgets
- preferences
- core intergration
- cmakefiles
- build scripts
- icons
- docs
Also remove the plugins and social network integration.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'desktop-widgets/plugins/facebook/CMakeLists.txt')
-rw-r--r-- | desktop-widgets/plugins/facebook/CMakeLists.txt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/desktop-widgets/plugins/facebook/CMakeLists.txt b/desktop-widgets/plugins/facebook/CMakeLists.txt deleted file mode 100644 index 592700ad4..000000000 --- a/desktop-widgets/plugins/facebook/CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ -if (ANDROID) - set(FACEBOOK_INTEGRATION "") -elseif (${FBSUPPORT}) - add_definitions(-DFBSUPPORT) - set(FACEBOOK_INTEGRATION facebook_integration) - include_directories(${CMAKE_CURRENT_BINARY_DIR}) - - set(FACEBOOK_PLUGIN_UI - facebookconnectwidget.ui - socialnetworksdialog.ui - ) - - set(FACEBOOK_PLUGIN_SRCS - facebook_integration.cpp - facebookconnectwidget.cpp - ) - - qt5_wrap_ui(FACEBOOK_PLUGIN_UI_SRCS ${FACEBOOK_PLUGIN_UI}) - add_library(facebook_integration STATIC ${FACEBOOK_PLUGIN_SRCS} ${FACEBOOK_PLUGIN_UI_SRCS}) - target_link_libraries(facebook_integration ${QT_LIBRARIES}) - add_dependencies(facebook_integration subsurface_corelib) -endif() |