You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
464 B
17 lines
464 B
function (check_target_property target prop)
|
|
get_target_property(gtp_val "${target}" "${prop}")
|
|
get_property(gp_val
|
|
TARGET "${target}"
|
|
PROPERTY "${prop}")
|
|
|
|
message("get_target_property: -->${gtp_val}<--")
|
|
message("get_property: -->${gp_val}<--")
|
|
endfunction ()
|
|
|
|
add_custom_target(tgt)
|
|
set_target_properties(tgt PROPERTIES empty "" custom value)
|
|
|
|
check_target_property(tgt empty)
|
|
check_target_property(tgt custom)
|
|
check_target_property(tgt noexist)
|