get_property: Drop test for builtin property documentation
Property documentation is no longer builtin, so the get_property command will be unable to return the documentation. Drop the test for it.
This commit is contained in:
parent
80a3273b5e
commit
6035c0458e
|
@ -11,17 +11,6 @@ if (NOT FOO_FULL STREQUAL "NOTFOUND")
|
|||
message(SEND_ERROR "property FOO has FULL_DOCS set to '${FOO_FULL}'")
|
||||
endif ()
|
||||
|
||||
get_property(test_brief GLOBAL PROPERTY ENABLED_FEATURES BRIEF_DOCS)
|
||||
get_property(test_full GLOBAL PROPERTY ENABLED_FEATURES FULL_DOCS)
|
||||
|
||||
if(test_brief STREQUAL "NOTFOUND")
|
||||
message(SEND_ERROR "property ENABLED_FEATURES has no BRIEF_DOCS")
|
||||
endif()
|
||||
|
||||
if(test_full STREQUAL "NOTFOUND")
|
||||
message(SEND_ERROR "property ENABLED_FEATURES has no FULL_DOCS")
|
||||
endif()
|
||||
|
||||
set(test_var alpha)
|
||||
get_property(result VARIABLE PROPERTY test_var)
|
||||
if(NOT result STREQUAL "alpha")
|
||||
|
|
Loading…
Reference in New Issue