cmake: add to LINK_DEPENDS in generate_g1a/g3a, don't override it

This commit is contained in:
Lephenixnoir 2025-03-24 16:09:27 +01:00
parent b7803a6aed
commit 25794c505d
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495
2 changed files with 6 additions and 3 deletions

View file

@ -56,6 +56,8 @@ function(generate_g1a)
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
)
if(DEFINED G1A_ICON)
set_target_properties("${G1A_TARGET}" PROPERTIES LINK_DEPENDS "${G1A_ICON}")
get_target_property(G1A_LDEP "${G1A_TARGET}" LINK_DEPENDS)
list(APPEND G1A_LDEP "${G1A_ICON}")
set_target_properties("${G1A_TARGET}" PROPERTIES LINK_DEPENDS "${G1A_LDEP}")
endif()
endfunction()

View file

@ -68,7 +68,8 @@ function(generate_g3a)
COMMAND_EXPAND_LISTS
)
if(DEFINED G3A_ICONS)
set_target_properties("${G3A_TARGET}" PROPERTIES
LINK_DEPENDS "${G3A_ICON1};${G3A_ICON2}")
get_target_property(G3A_LDEP "${G3A_TARGET}" LINK_DEPENDS)
list(APPEND G3A_LDEP "${G3A_ICON1}" "${G3A_ICON2}")
set_target_properties("${G3A_TARGET}" PROPERTIES LINK_DEPENDS "${G3A_LDEP}")
endif()
endfunction()