mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 20:29:56 -06:00
10 lines
185 B
CMake
10 lines
185 B
CMake
if(NOT FOO)
|
|
message(FATAL_ERROR "FOO is not set")
|
|
endif()
|
|
|
|
if(NOT "${PROJECT_NAME}" STREQUAL "")
|
|
message(FATAL_ERROR "PROJECT_NAME should be empty")
|
|
endif()
|
|
|
|
set(AUTO_INCLUDE TRUE)
|