Disable QtWebEngine automatic if not found

Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
This commit is contained in:
Felix Weilbach 2021-06-24 09:54:54 +02:00 committed by Felix Weilbach (Rebase PR Action)
parent 991f79c123
commit 40065dc6dc
4 changed files with 6 additions and 10 deletions

View file

@ -9,10 +9,6 @@ set(BIN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
include(${CMAKE_SOURCE_DIR}/NEXTCLOUD.cmake)
if(WITH_WEBENGINE)
add_compile_definitions(WITH_WEBENGINE=1)
endif()
# Default suffix if the theme doesn't define one
if(NOT DEFINED APPLICATION_VIRTUALFILE_SUFFIX)
set(APPLICATION_VIRTUALFILE_SUFFIX "${APPLICATION_SHORTNAME}_virtual" CACHE STRING "Virtual file suffix (not including the .)")

View file

@ -27,8 +27,6 @@ option( WITH_CRASHREPORTER "Build crashreporter" OFF )
#set( CRASHREPORTER_SUBMIT_URL "https://crash-reports.owncloud.com/submit" CACHE STRING "URL for crash reporter" )
#set( CRASHREPORTER_ICON ":/owncloud-icon.png" )
option(WITH_WEBENGINE "Enable use of QWebEngine" ON)
## Updater options
option( BUILD_UPDATER "Build updater" OFF )

View file

@ -7,8 +7,10 @@ include(ECMEnableSanitizers)
set(synclib_NAME ${APPLICATION_EXECUTABLE}sync)
find_package(Qt5 5.12 COMPONENTS Core Network Xml Concurrent REQUIRED)
if(WITH_WEBENGINE)
find_package(Qt5 5.12 COMPONENTS WebEngineWidgets WebEngine REQUIRED)
find_package(Qt5 5.12 COMPONENTS WebEngineWidgets WebEngine)
if(Qt5WebEngine_FOUND AND Qt5WebEngineWidgets_FOUND)
add_compile_definitions(WITH_WEBENGINE=1)
endif()
get_target_property (QT_QMAKE_EXECUTABLE Qt5::qmake IMPORTED_LOCATION)

View file

@ -134,7 +134,7 @@ set(client_SRCS
wizard/linklabel.cpp
)
if (WITH_WEBENGINE)
if (Qt5WebEngine_FOUND AND Qt5WebEngineWidgets_FOUND)
list(APPEND client_SRCS
wizard/webviewpage.cpp
wizard/webview.cpp
@ -337,7 +337,7 @@ target_link_libraries(nextcloudCore
${synclib_NAME}
)
if(WITH_WEBENGINE)
if(Qt5WebEngine_FOUND AND Qt5WebEngineWidgets_FOUND)
target_link_libraries(nextcloudCore PUBLIC Qt5::WebEngineWidgets)
endif()