mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
7 lines
202 B
CMake
7 lines
202 B
CMake
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()
|