From f3ae6873ea6b0796143ba690c08731735ac1282c Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 24 Feb 2021 12:55:20 +0000 Subject: [PATCH] Look for python 3.9 in cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 717ba67b2..e5d27168a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -390,7 +390,7 @@ add_subdirectory(renderdoc) # are handled in common if(ENABLE_QRENDERDOC OR ENABLE_PYRENDERDOC) # Make sure Python 3 is found - set(Python_ADDITIONAL_VERSIONS 3.8 3.7 3.6 3.5 3.4) + set(Python_ADDITIONAL_VERSIONS 3.9 3.8 3.7 3.6 3.5 3.4) if(NOT ${CMAKE_VERSION} VERSION_LESS "3.12") find_package(Python COMPONENTS Interpreter Development) set(PYTHON_EXECUTABLE ${Python_EXECUTABLE})