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.
11 lines
351 B
11 lines
351 B
get_property(FOO_BRIEF GLOBAL PROPERTY FOO BRIEF_DOCS)
|
|
get_property(FOO_FULL GLOBAL PROPERTY FOO FULL_DOCS)
|
|
|
|
if (NOT FOO_BRIEF STREQUAL "NOTFOUND")
|
|
message(SEND_ERROR "property FOO has BRIEF_DOCS set to '${FOO_BRIEF}'")
|
|
endif ()
|
|
|
|
if (NOT FOO_FULL STREQUAL "NOTFOUND")
|
|
message(SEND_ERROR "property FOO has FULL_DOCS set to '${FOO_FULL}'")
|
|
endif ()
|