From 4c264a4da605ddd85bbff150c0fe0f090a156de7 Mon Sep 17 00:00:00 2001 From: Gilles DAVID Date: Fri, 17 Nov 2017 14:39:52 +0100 Subject: [PATCH] Qt5WebEngine and Qt5WebEngineWidgets not compatible with Python 3 --- cmake/FindSalomeQt5.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/FindSalomeQt5.cmake b/cmake/FindSalomeQt5.cmake index 3c6903f..46d7453 100644 --- a/cmake/FindSalomeQt5.cmake +++ b/cmake/FindSalomeQt5.cmake @@ -51,7 +51,8 @@ IF ("${QT_VERSION}" VERSION_LESS "5.6.0") LIST(APPEND Qt5_FIND_COMPONENTS WebKit WebKitWidgets) ELSE() # QtWebEngine package is (optionally) used with Qt >= 5.6 - LIST(APPEND Qt5_OPTIONAL_COMPONENTS WebEngine WebEngineWidgets) + # Anyway, not available with Python 3 + # LIST(APPEND Qt5_OPTIONAL_COMPONENTS WebEngine WebEngineWidgets) ENDIF() IF(NOT WIN32) -- 2.39.2