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
418 B
17 lines
418 B
function (check_global_property prop)
|
|
get_cmake_property(gcp_val "${prop}")
|
|
get_property(gp_val
|
|
GLOBAL
|
|
PROPERTY "${prop}")
|
|
|
|
message("get_cmake_property: -->${gcp_val}<--")
|
|
message("get_property: -->${gp_val}<--")
|
|
endfunction ()
|
|
|
|
set_property(GLOBAL PROPERTY empty "")
|
|
set_property(GLOBAL PROPERTY custom value)
|
|
|
|
check_global_property(empty)
|
|
check_global_property(custom)
|
|
check_global_property(noexist)
|