diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-03-19 12:40:33 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-20 08:45:02 -0700 |
commit | 643f4a5726926b86693b442e318f40cf28fee04a (patch) | |
tree | 96841bf31a0ff5e82a22b042c10c351d25a27b84 /cmake/Modules/HandleUserManual.cmake | |
parent | b6c7abc1a76f4a05ea564ae994f19d5fc467699a (diff) | |
download | subsurface-643f4a5726926b86693b442e318f40cf28fee04a.tar.gz |
Remove partial support for QWebEngine
Printing never worked, none of this was ever included in test builds. Also, now
that there are official releases of QtWebKit again, this just doesn't seem worth
carrying along anymore.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'cmake/Modules/HandleUserManual.cmake')
-rw-r--r-- | cmake/Modules/HandleUserManual.cmake | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cmake/Modules/HandleUserManual.cmake b/cmake/Modules/HandleUserManual.cmake index ba8b66331..226b8ca9e 100644 --- a/cmake/Modules/HandleUserManual.cmake +++ b/cmake/Modules/HandleUserManual.cmake @@ -2,11 +2,5 @@ if(NO_USERMANUAL) message(STATUS "building without usermanual") add_definitions(-DNO_USERMANUAL) else() - if(USE_WEBENGINE) - message(STATUS "building with QWebEngine") - list(APPEND QT_EXTRA_COMPONENTS WebEngineWidgets) - add_definitions(-DUSE_WEBENGINE) - else() - list(APPEND QT_EXTRA_COMPONENTS WebKitWidgets) - endif() + list(APPEND QT_EXTRA_COMPONENTS WebKitWidgets) endif() |