Closed traversaro closed 2 years ago
find_package(pybind11) depending on the pybind11 version can use old variants of FindPython. By calling find_package(Python3) first we ensure that the recommended variant FindPython3 is used.
find_package(pybind11)
FindPython
find_package(Python3)
FindPython3
Thank you @traversaro
find_package(pybind11)
depending on the pybind11 version can use old variants ofFindPython
. By callingfind_package(Python3)
first we ensure that the recommended variantFindPython3
is used.