From 52e9990d3296471709326a8367e286c75911aa1c Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 29 Jul 2022 10:15:22 -0700 Subject: [PATCH] Python_Interpreter_FOUND -> Python3_Interpreter_FOUND --- cmake/FDBComponents.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FDBComponents.cmake b/cmake/FDBComponents.cmake index fe5fe91026..02f0aa2a16 100644 --- a/cmake/FDBComponents.cmake +++ b/cmake/FDBComponents.cmake @@ -57,7 +57,7 @@ endif() ################################################################################ find_package(Python3 COMPONENTS Interpreter) -if(Python_Interpreter_FOUND) +if(Python3_Interpreter_FOUND) set(WITH_PYTHON ON) else() message(WARNING "Could not found a suitable python interpreter")