From b0f85336d93977130e81c9a9d36cf8f8f02fd9fb Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Fri, 5 Jul 2024 16:42:43 +0200 Subject: [PATCH] CMake: we need to search for boost python if we want to link to it --- sdk/master_board_sdk/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/master_board_sdk/CMakeLists.txt b/sdk/master_board_sdk/CMakeLists.txt index 255b40b..58a9f7a 100644 --- a/sdk/master_board_sdk/CMakeLists.txt +++ b/sdk/master_board_sdk/CMakeLists.txt @@ -75,6 +75,7 @@ if(BUILD_PYTHON_INTERFACE) set(PYTHON_COMPONENTS Interpreter Development.Module) findpython(REQUIRED) set_boost_default_options() + search_for_boost_python(REQUIRED) endif(BUILD_PYTHON_INTERFACE) # ----------------------------------------------------