From edd796bb27696269ab9adef0b0339f6d53ff7e7e Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Tue, 14 Apr 2026 19:10:36 +0200 Subject: [PATCH] CMakeLists.txt: Added QUIET option for Python package search The QUIET option turns off unnecessary informational messages. Signed-off-by: simbit18 --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e2bc7fea33c..82af32ddb64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,10 @@ endif() # Find Python 3 interpreter -find_package(Python3 REQUIRED COMPONENTS Interpreter) +find_package( + Python3 REQUIRED + COMPONENTS Interpreter + QUIET) if(NOT Python3_Interpreter_FOUND) message(FATAL_ERROR "Did NOT find Python interpreter.") endif()