Skip to content
Snippets Groups Projects
Commit 424f0c73 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

fix : var name

parent 9bd747d6
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
...@@ -79,14 +79,16 @@ endif() ...@@ -79,14 +79,16 @@ endif()
# PYTHON BINDING # PYTHON BINDING
if (PYBIND) if (PYBIND)
include(PybindModuleCreation) include(PybindModuleCreation)
# retrieves pybind and python pkg and link them to _aidge_core
generate_python_binding(${project} ${module_name}) generate_python_binding(${project} ${module_name})
# Handles Python + pybind11 headers dependencies # Handles Python + pybind11 headers dependencies
target_link_libraries(${module_name} target_link_libraries(${module_name}
Python::Python PRIVATE
${Python_LIBRARIES}
PUBLIC PUBLIC
pybind11::pybind11 pybind11::pybind11
) )
endif() endif()
target_link_libraries(${module_name} PUBLIC Threads::Threads fmt::fmt) target_link_libraries(${module_name} PUBLIC Threads::Threads fmt::fmt)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment