1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# SPDX-License-Identifier: LGPL-3.0-only
project(pyradler)
# Create the binding library pyradler is a temporary alias for the radler target
pybind11_add_module(pyradler pyradler.cc pysettings.cc pywork_table.cc
pycomponent_list.cc pywrappers.cc)
target_include_directories(${PROJECT_NAME}
PRIVATE "$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/cpp>")
# Required to hide symols in target, see
# https://pybind11.readthedocs.io/en/stable/faq.html#someclass-declared-with-greater-visibility-than-the-type-of-its-field-someclass-member-wattributes
target_compile_options(
${PROJECT_NAME} PRIVATE -O3 -Wall -Wzero-as-null-pointer-constant
-fvisibility=hidden)
target_link_libraries(${PROJECT_NAME} PRIVATE radler)
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME radler)
# Define where the python module will be installed. When using scikit-build, it
# must be the current directory; otherwise, use site-packages directory.
if(DEFINED SKBUILD)
set(PYTHON_LIBRARY_DIR .)
else()
execute_process(
COMMAND ${Python_EXECUTABLE} -c
"import site; print(site.getsitepackages()[0])"
OUTPUT_VARIABLE PYTHON_DIST_PATH
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(PYTHON_DIST_PATH MATCHES
"\\/(lib.*\\/python${Python_VERSION_MAJOR}\\.${Python_VERSION_MINOR}\\/.*)"
)
set(PYTHON_LIBRARY_DIR ${CMAKE_MATCH_1})
else()
message(
FATAL_ERROR "Failed to parse PYTHON_DIST_PATH='${PYTHON_DIST_PATH}'")
endif()
endif()
# Install pyradler in PYTHON_LIBRARY_DIR directory
install(
TARGETS pyradler
COMPONENT python
LIBRARY DESTINATION ${PYTHON_LIBRARY_DIR})
|