This is an automated email from the ASF dual-hosted git repository.

lupyuen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit edd796bb27696269ab9adef0b0339f6d53ff7e7e
Author: simbit18 <[email protected]>
AuthorDate: Tue Apr 14 19:10:36 2026 +0200

    CMakeLists.txt: Added QUIET option for Python package search
    
    The QUIET option turns off unnecessary informational messages.
    
    Signed-off-by: simbit18 <[email protected]>
---
 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()

Reply via email to