File tree 1 file changed +4
-2
lines changed 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,17 @@ if(CMAKE_VERSION VERSION_LESS 3.13)
75
75
set_property (
76
76
TARGET pybind11::python_link_helper
77
77
APPEND
78
- PROPERTY INTERFACE_LINK_LIBRARIES "$<$<PLATFORM_ID:Darwin>:-undefined suppress -flat_namespace>" )
78
+ PROPERTY INTERFACE_LINK_LIBRARIES
79
+ "$<$<PLATFORM_ID:Darwin>:-undefined suppress -flat_namespace>" )
79
80
else ()
80
81
# link_options was added in 3.13+
81
82
# This is safer, because you are ensured the deduplication pass in CMake will not consider
82
83
# these separate and remove one but not the other.
83
84
set_property (
84
85
TARGET pybind11::python_link_helper
85
86
APPEND
86
- PROPERTY INTERFACE_LINK_OPTIONS "$<$<PLATFORM_ID:Darwin>:LINKER:-undefined,suppress,-flat_namespace>" )
87
+ PROPERTY INTERFACE_LINK_OPTIONS
88
+ "$<$<PLATFORM_ID:Darwin>:LINKER:-undefined,suppress,-flat_namespace>" )
87
89
endif ()
88
90
89
91
# ------------------------ Windows extras -------------------------
You can’t perform that action at this time.
0 commit comments