mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 19:19:01 +08:00
3efae11c36
closes #36801 closes #36253 closes #36044 ~~includes #24327 to fix dlib linkage in the osx pipelines.~~ Need to look at ~~#36044~~ ~~#36345~~ merge after - [x] #37561 --------- Co-authored-by: Alexander Neumann <you@example.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
33 lines
1.7 KiB
Diff
33 lines
1.7 KiB
Diff
diff --git a/CMake/vtkModuleWrapPython.cmake b/CMake/vtkModuleWrapPython.cmake
|
|
index 5d2c2e1bf..e33a16d68 100644
|
|
--- a/CMake/vtkModuleWrapPython.cmake
|
|
+++ b/CMake/vtkModuleWrapPython.cmake
|
|
@@ -152,23 +152,26 @@ function (_vtk_module_wrap_python_sources module sources classes)
|
|
set(_vtk_python_genex_compile_definitions "")
|
|
set(_vtk_python_genex_include_directories "")
|
|
if (_vtk_python_genex_allowed)
|
|
set(_vtk_python_genex_compile_definitions
|
|
"$<TARGET_PROPERTY:${_vtk_python_target_name},COMPILE_DEFINITIONS>")
|
|
set(_vtk_python_genex_include_directories
|
|
"$<TARGET_PROPERTY:${_vtk_python_target_name},INCLUDE_DIRECTORIES>")
|
|
+ set(_vtk_python_genex_interface_include_directories
|
|
+ "$<TARGET_PROPERTY:${_vtk_python_target_name},INTERFACE_INCLUDE_DIRECTORIES>")
|
|
else ()
|
|
if (NOT DEFINED ENV{CI})
|
|
message(AUTHOR_WARNING
|
|
"Python wrapping is not using target-local compile definitions or "
|
|
"include directories. This may affect generation of the Python "
|
|
"wrapper sources for the ${module} module. Use CMake 3.19+ to "
|
|
"guarantee intended behavior.")
|
|
endif ()
|
|
endif ()
|
|
file(GENERATE
|
|
OUTPUT "${_vtk_python_args_file}"
|
|
CONTENT "$<$<BOOL:${_vtk_python_genex_compile_definitions}>:\n-D\'$<JOIN:${_vtk_python_genex_compile_definitions},\'\n-D\'>\'>\n
|
|
$<$<BOOL:${_vtk_python_genex_include_directories}>:\n-I\'$<JOIN:${_vtk_python_genex_include_directories},\'\n-I\'>\'>\n
|
|
+$<$<BOOL:${_vtk_python_genex_interface_include_directories}>:\n-I\'$<JOIN:${_vtk_python_genex_interface_include_directories},\'\n-I\'>\'>\n
|
|
$<$<BOOL:${_vtk_python_hierarchy_files}>:\n--types \'$<JOIN:${_vtk_python_hierarchy_files},\'\n--types \'>\'>\n")
|
|
|
|
set(_vtk_python_sources)
|
|
|