Check for python3-config or python3.x-config binary names. Refs #647

This commit is contained in:
baldurk
2017-06-12 12:11:14 +01:00
parent 2454863b80
commit fa1b098cc4
+2 -2
View File
@@ -53,8 +53,8 @@ set(Python_ADDITIONAL_VERSIONS 3.4 3.5 3.6)
find_package(PythonInterp 3 REQUIRED)
find_package(PythonLibs 3 REQUIRED)
# we also need python3-config for swig
if(NOT EXISTS "${PYTHON_EXECUTABLE}-config")
message(FATAL_ERROR "We require python3-config to build swig, please install the python dev package for your system.")
if(NOT EXISTS "${PYTHON_EXECUTABLE}-config" AND NOT EXISTS "${PYTHON_EXECUTABLE}${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}-config")
message(FATAL_ERROR "We require ${PYTHON_EXECUTABLE}-config or ${PYTHON_EXECUTABLE}${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}-config to build swig, please install the python dev package for your system.")
endif()
include(ExternalProject)