mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
CMakeLists.txt: Added QUIET option for Python package search
The QUIET option turns off unnecessary informational messages. Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
parent
d8872255e8
commit
edd796bb27
1 changed files with 4 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue