mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
35 lines
1.4 KiB
CMake
35 lines
1.4 KiB
CMake
# Include the python directory. Also include the parent (which is for example /usr/include)
|
|
# which may be required when it is not includes by the (cross-) compiler by default.
|
|
if (NOT CMAKE_VERSION VERSION_LESS "3.12")
|
|
find_package(Python3 COMPONENTS Interpreter Development REQUIRED)
|
|
include_directories(${Python3_INCLUDE_DIRS} ${Python3_INCLUDE_DIRS}/..)
|
|
add_compile_definitions(PYTHON_VERSION_MAJOR=${Python3_VERSION_MAJOR})
|
|
add_compile_definitions(PYTHON_VERSION_MINOR=${Python3_VERSION_MINOR})
|
|
else()
|
|
find_package (PythonLibs ${PYTHON_VERSION_STRING} EXACT) # Maps PythonLibs to the PythonInterp version of the main cmake
|
|
include_directories(${PYTHON_INCLUDE_DIRS} ${PYTHON_INCLUDE_DIRS}/..)
|
|
add_definitions(-DPYTHON_VERSION_MAJOR=${PYTHON_VERSION_MAJOR})
|
|
add_definitions(-DPYTHON_VERSION_MINOR=${PYTHON_VERSION_MINOR})
|
|
endif()
|
|
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/python)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/python)
|
|
|
|
FILE ( GLOB PYTHON_SOURCES "${CURRENT_HEADER_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.cpp" )
|
|
|
|
add_library(python
|
|
${PYTHON_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(python
|
|
effectengine
|
|
hyperion-utils
|
|
)
|
|
|
|
if (NOT CMAKE_VERSION VERSION_LESS "3.12")
|
|
target_link_libraries( python ${Python3_LIBRARIES} )
|
|
else()
|
|
target_link_libraries( python ${PYTHON_LIBRARIES} )
|
|
endif()
|