From c23b0c33e30d819bb3aee3ed335becc93b7aff14 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Thu, 4 Feb 2021 12:01:14 +0100 Subject: [PATCH] limit the number of qt5 components in installation test --- Installation/test/Installation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installation/test/Installation/CMakeLists.txt b/Installation/test/Installation/CMakeLists.txt index dcc881d25c9..6295a9e968a 100644 --- a/Installation/test/Installation/CMakeLists.txt +++ b/Installation/test/Installation/CMakeLists.txt @@ -77,7 +77,7 @@ else() endif() if(WITH_CGAL_Qt5) - find_package(Qt5 QUIET COMPONENTS Core Widgets Xml OpenGL Gui) + find_package(Qt5 QUIET COMPONENTS Core) if(Qt5_FOUND) create_link_to_program(CGAL_Qt5) endif()