From 664ef39806cde67f97eb037c6418bb83ced9be74 Mon Sep 17 00:00:00 2001 From: Joost van Amersfoort Date: Fri, 7 Apr 2017 16:02:37 +0100 Subject: [PATCH] Add support for Python3.6 lib search with Cmake (#527) * Add support for Python3.6 lib search with Cmake A recent commit added support for python3.5 lib search with Cmake. This PR extends that to python 3.6. Relevant old commit: https://github.com/davisking/dlib/commit/17a2c75ddffb13e915686803c5e3bf4cc1389a96 * Turn python versions into a list --- dlib/cmake_utils/add_python_module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlib/cmake_utils/add_python_module b/dlib/cmake_utils/add_python_module index 2059af7e45..bb6c318937 100644 --- a/dlib/cmake_utils/add_python_module +++ b/dlib/cmake_utils/add_python_module @@ -68,7 +68,7 @@ if (PYTHON3) if (NOT Boost_FOUND) FIND_PACKAGE(Boost 1.41.0 COMPONENTS python) endif() - set(Python_ADDITIONAL_VERSIONS 3.5) + set(Python_ADDITIONAL_VERSIONS 3.5 3.6) FIND_PACKAGE(PythonLibs 3.4 REQUIRED) else() FIND_PACKAGE(Boost 1.41.0 COMPONENTS python)