diff options
author | Brad King <brad.king@kitware.com> | 2010-12-21 19:04:41 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2010-12-21 19:04:41 (GMT) |
commit | b44632ef6f41cb69bea375d7025f3410c0df17b0 (patch) | |
tree | b9a759bd2ddbeb85ab61682eda03d3e63cfe9d83 /Modules | |
parent | 31b0657e7d4bab3e6c5a00c1318d1c231d8ab44b (diff) | |
parent | a6cb1d46535b083a74be6c6517acf343294105a7 (diff) | |
download | CMake-b44632ef6f41cb69bea375d7025f3410c0df17b0.zip CMake-b44632ef6f41cb69bea375d7025f3410c0df17b0.tar.gz CMake-b44632ef6f41cb69bea375d7025f3410c0df17b0.tar.bz2 |
Merge topic 'cmake_--system-information_min-version'
a6cb1d4 Declare min CMake version in --system-information project
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/SystemInformation.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/SystemInformation.cmake b/Modules/SystemInformation.cmake index d973e90f..d4f2233 100644 --- a/Modules/SystemInformation.cmake +++ b/Modules/SystemInformation.cmake @@ -1,6 +1,6 @@ #============================================================================= -# Copyright 2007-2009 Kitware, Inc. +# Copyright 2007-2010 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. @@ -12,6 +12,7 @@ # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) +CMAKE_MINIMUM_REQUIRED(VERSION ${CMAKE_VERSION}) PROJECT(DumpInformation) # first get the standard information for th platform |