From e6a3ea09ea206766fa1794492220605546b5c0af Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Tue, 29 Oct 2019 13:48:48 +0100 Subject: [PATCH] CMake: py3.8 support Add 3.8 to list of python versions. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 082a6f5a3..44bff9080 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -357,7 +357,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.4 3.5 3.6 3.7) + set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6 3.7 3.8) find_package(PythonInterp 3 REQUIRED) find_package(PythonLibs 3 REQUIRED) # we also need python3-config for swig -- 2.23.0