mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
59573bf5b9
The top-level project() call will now issue an AUTHOR_WARNING if it wasn't called after cmake_minimum_required(). Fixes: #24071
6 lines
170 B
CMake
6 lines
170 B
CMake
if(NOT "x${RunCMake_TEST}" STREQUAL "xNoMinimumRequired")
|
|
cmake_minimum_required(VERSION 2.8.12)
|
|
endif()
|
|
project(${RunCMake_TEST} NONE)
|
|
include(${RunCMake_TEST}.cmake)
|