From 61d3ce86d2ee179c44573896b397ddc54fddbbeb Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Tue, 2 Feb 2021 11:30:43 +0100 Subject: [PATCH] Fix qt5 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 f22bddd7708..dcc881d25c9 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) + find_package(Qt5 QUIET COMPONENTS Core Widgets Xml OpenGL Gui) if(Qt5_FOUND) create_link_to_program(CGAL_Qt5) endif()