From 6a33abd7c4d99216134cc926b0a1ce8c37453367 Mon Sep 17 00:00:00 2001 From: Paul Baksic Date: Tue, 25 Mar 2025 11:41:59 +0100 Subject: [PATCH] Add quiet to remove warning --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9a2e76a..e39fc95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ project(PluginExample VERSION 1.0 LANGUAGES CXX) find_package(Sofa.Component.Visual REQUIRED) # Needed for VisualModelImpl ## Optional dependencies -sofa_find_package(Sofa.GUI.Qt) -sofa_find_package(Qt5 COMPONENTS Core) # Dependency to Qt5Core (needed for qt5_wrap_cpp) +sofa_find_package(Sofa.GUI.Qt QUIET) +sofa_find_package(Qt5 COMPONENTS Core QUIET) # Dependency to Qt5Core (needed for qt5_wrap_cpp) # List all files set(PLUGINEXAMPLE_SRC_DIR src/PluginExample)