Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
4568d046c46a7357ab48ddfb1117bad39e65572c
/
.
/
Tests
/
RunCMake
/
CMakeRoleGlobalProperty
/
Script.cmake
blob: 371edbc5cf5b3ffd8c1d13cad803a7acf5c03f4f [
file
] [
log
] [
blame
]
cmake_minimum_required
(
VERSION
3.12
)
get_property
(
role GLOBAL PROPERTY CMAKE_ROLE
)
if
(
NOT role STREQUAL
"SCRIPT"
)
message
(
SEND_ERROR
"CMAKE_ROLE property is \"${role}\", should be \"SCRIPT\""
)
endif
()