mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-26 07:02:11 +00:00
Fixed finding python libraries on windows in venv
When run on windows in a venv, PYTHON_LIBRARY pointet to a non-existant location in the virtual environment directory. This has been fixed by testing if the path exists and, if not, trying an alternative path, relative to the PYTHON_INCLUDE_DIR. If the alternative path doesn't exit as well, an error will be raised.
This commit is contained in:
parent
5289af5fc0
commit
b81c500ce2
@ -142,6 +142,20 @@ endif()
|
|||||||
if(CMAKE_HOST_WIN32)
|
if(CMAKE_HOST_WIN32)
|
||||||
set(PYTHON_LIBRARY
|
set(PYTHON_LIBRARY
|
||||||
"${PYTHON_PREFIX}/libs/Python${PYTHON_LIBRARY_SUFFIX}.lib")
|
"${PYTHON_PREFIX}/libs/Python${PYTHON_LIBRARY_SUFFIX}.lib")
|
||||||
|
|
||||||
|
# when run in a venv, PYTHON_PREFIX points to it. But the libraries remain in the
|
||||||
|
# original python installation. They may be found relative to PYTHON_INCLUDE_DIR.
|
||||||
|
if(NOT EXISTS "${PYTHON_LIBRARY}")
|
||||||
|
get_filename_component(_PYTHON_ROOT ${PYTHON_INCLUDE_DIR} DIRECTORY)
|
||||||
|
set(PYTHON_LIBRARY
|
||||||
|
"${_PYTHON_ROOT}/libs/Python${PYTHON_LIBRARY_SUFFIX}.lib")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# raise an error if the python libs are still not found.
|
||||||
|
if(NOT EXISTS "${PYTHON_LIBRARY}")
|
||||||
|
message(FATAL_ERROR "Python libraries not found")
|
||||||
|
endif()
|
||||||
|
|
||||||
elseif(APPLE)
|
elseif(APPLE)
|
||||||
set(PYTHON_LIBRARY
|
set(PYTHON_LIBRARY
|
||||||
"${PYTHON_PREFIX}/lib/libpython${PYTHON_LIBRARY_SUFFIX}.dylib")
|
"${PYTHON_PREFIX}/lib/libpython${PYTHON_LIBRARY_SUFFIX}.dylib")
|
||||||
|
Loading…
Reference in New Issue
Block a user