diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2019-02-01 04:11:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-04 10:24:01 -0700 |
commit | e685e7e9de3ad93a32fe51d7a04407c574cc08be (patch) | |
tree | 5148e454973c39381cb68fb4926ba24f5949e6f6 /CMakeLists.txt | |
parent | 41de2f66e3a2c9732ba0d9ebe55c27d8d09718d2 (diff) | |
download | subsurface-e685e7e9de3ad93a32fe51d7a04407c574cc08be.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>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1556707e6..b431fd114 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,6 @@ option(NO_PRINTING "disable the printing support" OFF) option(NO_USERMANUAL "don't include a viewer for the user manual" OFF) #Options regarding enabling parts of subsurface -option(FBSUPPORT "allow posting to Facebook" ON) option(BTSUPPORT "enable support for QtBluetooth (requires Qt5.4 or newer)" ON) option(FTDISUPPORT "enable support for libftdi based serial" OFF) option(USE_WEBENGINE "Use QWebEngine instead of QWebKit" OFF) @@ -335,15 +334,10 @@ elseif(${SUBSURFACE_TARGET_EXECUTABLE} MATCHES "DesktopExecutable") add_executable(${SUBSURFACE_TARGET} MACOSX_BUNDLE WIN32 ${SUBSURFACE_PKG} ${SUBSURFACE_APP} ${SUBSURFACE_RESOURCES}) endif() - if(FBSUPPORT) - set(FACEBOOK_INTEGRATION facebook_integration) - add_dependencies(facebook_integration subsurface_generated_ui) - endif() target_link_libraries( ${SUBSURFACE_TARGET} subsurface_generated_ui subsurface_interface - ${FACEBOOK_INTEGRATION} subsurface_profile subsurface_statistics subsurface_models_desktop |