diff options
author | Brad King <brad.king@kitware.com> | 2009-01-03 15:47:58 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-01-03 15:47:58 -0500 |
commit | cd7585df22070bb8367c6486086f933c10f4a1ec (patch) | |
tree | ca8b807e73fa1150219c2d8b4d49847bf200f1ba /Source/cmCMakeMinimumRequired.h | |
parent | ee1d1b2c68ed5bdb719c2bb400a9069081e6b64d (diff) | |
download | cmake-cd7585df22070bb8367c6486086f933c10f4a1ec.tar.gz |
ENH: Ignore unknown cmake_minimum_required args
When cmake_minimum_required is called with an unknown argument it should
not complain about it if the version specified is in the future. This
allows the proper error to be shown about the current CMake being too
old.
Diffstat (limited to 'Source/cmCMakeMinimumRequired.h')
-rw-r--r-- | Source/cmCMakeMinimumRequired.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCMakeMinimumRequired.h b/Source/cmCMakeMinimumRequired.h index 4409294091..47243f845d 100644 --- a/Source/cmCMakeMinimumRequired.h +++ b/Source/cmCMakeMinimumRequired.h @@ -83,6 +83,10 @@ public: } cmTypeMacro(cmCMakeMinimumRequired, cmCommand); + +private: + std::vector<std::string> UnknownArguments; + bool EnforceUnknownArguments(); }; |