summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CMP0102/CMP0102-WARN-Default.cmake
blob: d6ebe4de11e32cd6c72b1ed5f8ec160486caf6bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

include (CMP0102-Common.cmake)
get_property(is_type_set CACHE CMP0102_TEST_VARIABLE
  PROPERTY TYPE SET)
if (NOT is_type_set)
  message(FATAL_ERROR
    "There is a cache entry for an undefined variable after "
    "`mark_as_advanced`.")
endif ()
get_property(type CACHE CMP0102_TEST_VARIABLE
  PROPERTY TYPE)
if (NOT type STREQUAL "UNINITIALIZED")
  message(FATAL_ERROR
    "The cache type for CMP0102_TEST_VARIABLE is not "
    "UNINITIALIZED")
endif ()