cmake: Fix pybind11_abseil integration

This commit is contained in:
Corentin Le Molgat
2024-01-26 13:12:27 +01:00
parent 3d14a7730a
commit cc87abc43c

View File

@@ -155,7 +155,7 @@ endif()
# ##############################################################################
if(BUILD_PYTHON)
# Find Python 3
find_package(Python3 REQUIRED COMPONENTS Interpreter Development.Module)
find_package(Python3 REQUIRED COMPONENTS Interpreter Development.Module OPTIONAL_COMPONENTS Development.Embed)
endif()
if(BUILD_PYTHON AND BUILD_pybind11)