[CMAKE] Introduce add_rc_deps() to take care of adding OBJECT_DEPENDS to rc source files. CORE-9806

svn path=/trunk/; revision=68117
This commit is contained in:
Amine Khaldi 2015-06-13 11:05:03 +00:00
parent fcbc8f277a
commit 1b969c0a85

View file

@ -800,3 +800,7 @@ if(KDBG)
else()
set(ROSSYM_LIB "")
endif()
function(add_rc_deps _target_rc)
set_source_files_properties(${_target_rc} PROPERTIES OBJECT_DEPENDS "${ARGN}")
endfunction()