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:
parent
d2b3f8ba28
commit
074b511fab
@ -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 )
|
||||
|
Loading…
Reference in New Issue
Block a user