From a756f6bed072606e72868d2a9925e354d9d5dc64 Mon Sep 17 00:00:00 2001 From: Kevin Heirich <kevin.heirich@hesge.ch> Date: Wed, 12 Mar 2025 11:30:32 +0100 Subject: [PATCH] forgot to include the pybind headers, added it --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bf0419..001de29 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ include_directories(inc ${LIBSANDBOX_DIR}/inc) set(PYBIND11_FINDPYTHON ON) find_package(pybind11 CONFIG REQUIRED) -# include_directories(inc ${pybind11_INCLUDE_DIR}) +include_directories(inc ${pybind11_INCLUDE_DIR}) # pybind11_add_module(sandbox_wrapper cpp/sandbox_wrapper.cpp) @@ -85,4 +85,4 @@ add_custom_command(TARGET ${LIBNAME} POST_BUILD # Installation de la bibliothèque et des fichiers d'en-tête install(TARGETS ${LIBNAME} DESTINATION lib) -install(DIRECTORY inc/ DESTINATION include) \ No newline at end of file +install(DIRECTORY inc/ DESTINATION include) -- GitLab