7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

Adjust OBJECT_DEPENDS for MacOS

It appears that MacOS only sees the last key/value for the
source_file_property whereas Linux/Windows see all depends.  This works
around the different by getting the value first, accumulating in the
loop and setting once at the end
This commit is contained in:
Seth Hillbrand 2025-03-24 14:07:23 -07:00
parent d2b3f8ba28
commit 074b511fab

View File

@ -659,8 +659,14 @@ foreach(file ${markdownFiles})
add_dependencies(generate_headers ${filename}_gen)
# Mark the output header as a dependency of the source file
get_source_file_property(existing_depends dialogs/panel_setup_rules.cpp OBJECT_DEPENDS)
if(NOT existing_depends OR existing_depends STREQUAL "NOTFOUND")
set(existing_depends "")
else()
set(existing_depends "${existing_depends};")
endif()
set_source_files_properties(dialogs/panel_setup_rules.cpp
PROPERTIES OBJECT_DEPENDS "${outputHeader}")
PROPERTIES OBJECT_DEPENDS "${existing_depends}${outputHeader}")
endforeach()
if( APPLE )