cmake: warning message when python3 is not found

main
Luis Díaz Más 3 years ago
parent 3e0a5b97a3
commit 40a59abef8

@ -12,6 +12,9 @@ else()
endif() endif()
find_package (Python3 COMPONENTS Interpreter) find_package (Python3 COMPONENTS Interpreter)
if (NOT Python3_Interpreter_FOUND)
message(WARNING "Python3 was not found. Python tests under the 'tests' folder will not be executed")
endif()
# don't use Frameworks on the Mac (#966) # don't use Frameworks on the Mac (#966)
if (APPLE) if (APPLE)

Loading…
Cancel
Save