ci: Fix build

pull/271/head
Olivier Martin 2024-02-21 23:22:52 +01:00 committed by Olivier Martin
parent d3d9600114
commit 18e1658d6f
1 changed files with 11 additions and 8 deletions

View File

@ -102,15 +102,18 @@ if(GATTLIB_PYTHON_INTERFACE)
else()
set(Python_USE_STATIC_LIBS TRUE)
endif()
find_package(Python COMPONENTS Development.Module)
if (Python_Development.Module_FOUND)
include_directories(${Python_INCLUDE_DIRS})
list(APPEND gattlib_LIBS ${Python_LIBRARIES})
add_definitions(-DWITH_PYTHON -DPYTHON_VERSION_MAJOR=${Python_VERSION_MAJOR} -DPYTHON_VERSION_MINOR=${Python_VERSION_MINOR})
else()
message(FATAL_ERROR "Could not find Python developer package")
find_package(Python COMPONENTS Interpreter Development)
if (NOT Python_Development_FOUND)
find_package(Python COMPONENTS Development.Module)
if (NOT Python_Development.Module_FOUND)
message(FATAL_ERROR "Could not find Python developer package")
endif()
endif()
include_directories(${Python_INCLUDE_DIRS})
list(APPEND gattlib_LIBS ${Python_LIBRARIES})
add_definitions(-DWITH_PYTHON -DPYTHON_VERSION_MAJOR=${Python_VERSION_MAJOR} -DPYTHON_VERSION_MINOR=${Python_VERSION_MINOR})
endif()
# Gattlib