diff --git a/cmake/python.cmake b/cmake/python.cmake index 93277244c8..84b459c39f 100644 --- a/cmake/python.cmake +++ b/cmake/python.cmake @@ -5,6 +5,7 @@ find_package(PythonInterp QUIET) find_package(PythonLibs QUIET 2.4) set_package_properties(PythonInterp PROPERTIES TYPE REQUIRED) if(PYTHONLIBS_FOUND) + message("Python libraries: ${PYTHON_LIBRARY}") set(CMAKE_REQUIRED_LIBRARIES "${PYTHON_LIBRARY}") include_directories(SYSTEM ${PYTHON_INCLUDE_DIR}) add_definitions(-DHAVE_PYTHON=1)