You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
255 B

enable_language(C)
set(vars
CMAKE_EXECUTABLE_FORMAT
)
if(CMAKE_HOST_UNIX)
list(APPEND vars
CMAKE_UNAME
)
endif()
foreach(v IN LISTS vars)
if(NOT DEFINED ${v})
message(SEND_ERROR "Variable '${v}' is not set!")
endif()
endforeach()