https://github.com/precice/precice
Revision 343309521259072c4a3262bd89456192c53a03dc authored by David Schneider on 31 July 2023, 13:58:00 UTC, committed by GitHub on 31 July 2023, 13:58:00 UTC
1 parent 8bb0615
Raw File
Tip revision: 343309521259072c4a3262bd89456192c53a03dc authored by David Schneider on 31 July 2023, 13:58:00 UTC
Re-add setup workflow
Tip revision: 3433095
CopyTargetProperty.cmake
# Copies a property from a target to another
function(copy_target_property from to property)
  get_target_property(value ${from} ${property})
  if(value)
    set_target_properties(${to} PROPERTIES ${property} "${value}")
  endif(value)
endfunction(copy_target_property)
back to top