forked from panda3d/interrogate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPython.cmake
100 lines (82 loc) · 2.99 KB
/
Python.cmake
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Filename: Python.cmake
#
# Description: This file provides support functions for building/installing
# Python extension modules and/or pure-Python packages.
#
# Functions:
# add_python_target(target [source1 [source2 ...]])
#
#
# Function: add_python_target(target [EXPORT exp] [COMPONENT comp]
# [source1 [source2 ...]])
# Build the provided source(s) as a Python extension module, linked against the
# Python runtime library.
#
# Note that this also takes care of installation, unlike other target creation
# commands in CMake. The EXPORT and COMPONENT keywords allow passing the
# corresponding options to install(), but default to "Python" otherwise.
#
function(add_python_target target)
if(NOT HAVE_PYTHON)
return()
endif()
set(sources)
set(component "python_modules")
set(export "python_modules")
set(module_name "${target}")
foreach(arg ${ARGN})
if(arg STREQUAL "COMPONENT")
set(keyword "component")
elseif(arg STREQUAL "EXPORT")
set(keyword "export")
elseif(arg STREQUAL "MODULE_NAME")
set(keyword "module_name")
elseif(keyword)
set(${keyword} "${arg}")
unset(keyword)
else()
list(APPEND sources "${arg}")
endif()
endforeach(arg)
string(REGEX REPLACE "^.*\\." "" basename "${module_name}")
if(module_name MATCHES "[.]")
string(REGEX REPLACE "\\.[^.]+$" "" namespace "${module_name}")
string(REPLACE "." "/" slash_namespace "/${namespace}")
else()
set(namespace "")
set(slash_namespace "")
endif()
if(CMAKE_VERSION VERSION_LESS "3.26")
add_library(${target} ${MODULE_TYPE} ${sources})
target_link_libraries(${target} PKG::PYTHON)
else()
if(MODULE_TYPE STREQUAL "MODULE")
Python_add_library(${target} MODULE USE_SABI 3.3 ${sources})
else()
Python_add_library(${target} ${MODULE_TYPE} ${sources})
endif()
endif()
if(NOT MODULE_TYPE STREQUAL "STATIC")
set(_outdir "${PANDA_OUTPUT_DIR}${slash_namespace}")
set_target_properties(${target} PROPERTIES
LIBRARY_OUTPUT_DIRECTORY "${_outdir}"
OUTPUT_NAME "${basename}"
PREFIX ""
SUFFIX "${PYTHON_EXTENSION_SUFFIX}")
# This is explained over in CompilerFlags.cmake
foreach(_config ${CMAKE_CONFIGURATION_TYPES})
string(TOUPPER "${_config}" _config)
set_target_properties(${target} PROPERTIES
LIBRARY_OUTPUT_DIRECTORY_${_config} "${_outdir}")
endforeach(_config)
if(PYTHON_ARCH_INSTALL_DIR)
install(TARGETS ${target} EXPORT "${export}" COMPONENT "${component}" DESTINATION "${PYTHON_ARCH_INSTALL_DIR}${slash_namespace}")
install(FILES "${basename}.pyi" OPTIONAL COMPONENT "${component}" DESTINATION "${PYTHON_ARCH_INSTALL_DIR}${slash_namespace}")
endif()
else()
set_target_properties(${target} PROPERTIES
OUTPUT_NAME "${basename}"
PREFIX "libpy.${namespace}.")
install(TARGETS ${target} EXPORT "${export}" COMPONENT "${component}" DESTINATION ${CMAKE_INSTALL_LIBDIR})
endif()
endfunction(add_python_target)