From 935807ce40c04e507063e45a5286cf1804f5cf45 Mon Sep 17 00:00:00 2001 From: Jorge Blanco Alonso Date: Thu, 12 Mar 2020 17:52:41 +0100 Subject: [PATCH] Add python36 to Boost.Python finder --- ChoosePython.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChoosePython.cmake b/ChoosePython.cmake index e91895f..82c29e1 100644 --- a/ChoosePython.cmake +++ b/ChoosePython.cmake @@ -53,7 +53,7 @@ if(${USE_PYTHON_VERSION} STREQUAL auto) # Finding Boost first if needed because if the Python3 interpreter is found # first there's no way back. if(NOT CHOOSE_PYTHON_IGNORE_BOOST) - foreach(__suffix 3 38 -py38 37 -py37 -py36 -py35 -py34 ) + foreach(__suffix 3 38 -py38 37 -py37 36 -py36 -py35 -py34 ) find_package(Boost COMPONENTS python${__suffix} QUIET) if(Boost_FOUND) string(TOUPPER ${__suffix} __boost_python_library_suffix)