Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
76237d47fe0d4138872e0219dfd2ce21efc66ebf
/
.
/
Tests
/
RunCMake
/
CMakeRoleGlobalProperty
/
test.cmake.in
blob: d8f2e7b9efb0b47a2c2bb677adfbf7f179b071c9 [
file
]
cmake_minimum_required
(
VERSION
3.12
)
get_property
(
role GLOBAL PROPERTY CMAKE_ROLE
)
if
(
NOT role STREQUAL
"CTEST"
)
message
(
SEND_ERROR
"CMAKE_ROLE property is \"${role}\", should be \"CTEST\""
)
endif
()