2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-04-18 00:16:06 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-04-18 00:16:06 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2002-04-18 00:16:06 +04:00
|
|
|
#include "cmCMakeMinimumRequired.h"
|
|
|
|
|
2006-02-15 01:16:14 +03:00
|
|
|
#include "cmVersion.h"
|
|
|
|
|
2002-04-18 00:16:06 +04:00
|
|
|
// cmCMakeMinimumRequired
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmCMakeMinimumRequired
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2002-04-18 00:16:06 +04:00
|
|
|
{
|
2006-02-15 01:16:14 +03:00
|
|
|
// Process arguments.
|
|
|
|
std::string version_string;
|
|
|
|
bool doing_version = false;
|
|
|
|
for(unsigned int i=0; i < args.size(); ++i)
|
|
|
|
{
|
|
|
|
if(args[i] == "VERSION")
|
|
|
|
{
|
|
|
|
doing_version = true;
|
|
|
|
}
|
|
|
|
else if(args[i] == "FATAL_ERROR")
|
|
|
|
{
|
|
|
|
if(doing_version)
|
|
|
|
{
|
|
|
|
this->SetError("called with no value for VERSION.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
doing_version = false;
|
|
|
|
}
|
|
|
|
else if(doing_version)
|
|
|
|
{
|
|
|
|
doing_version = false;
|
|
|
|
version_string = args[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-03 23:47:58 +03:00
|
|
|
this->UnknownArguments.push_back(args[i]);
|
2006-02-15 01:16:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(doing_version)
|
2002-04-18 00:16:06 +04:00
|
|
|
{
|
2006-02-15 01:16:14 +03:00
|
|
|
this->SetError("called with no value for VERSION.");
|
2002-04-18 00:16:06 +04:00
|
|
|
return false;
|
|
|
|
}
|
2006-02-15 01:16:14 +03:00
|
|
|
|
|
|
|
// Make sure there was a version to check.
|
|
|
|
if(version_string.empty())
|
|
|
|
{
|
2009-01-03 23:47:58 +03:00
|
|
|
return this->EnforceUnknownArguments();
|
2006-02-15 01:16:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Save the required version string.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition("CMAKE_MINIMUM_REQUIRED_VERSION",
|
|
|
|
version_string.c_str());
|
|
|
|
|
2006-02-15 01:16:14 +03:00
|
|
|
|
|
|
|
// Get the current version number.
|
2006-11-29 23:59:16 +03:00
|
|
|
int current_major = cmVersion::GetMajorVersion();
|
|
|
|
int current_minor = cmVersion::GetMinorVersion();
|
|
|
|
int current_patch = cmVersion::GetPatchVersion();
|
2010-04-23 17:50:02 +04:00
|
|
|
int current_tweak = cmVersion::GetTweakVersion();
|
2006-02-15 01:16:14 +03:00
|
|
|
|
2010-04-23 17:50:02 +04:00
|
|
|
// Parse at least two components of the version number.
|
|
|
|
// Use zero for those not specified.
|
2006-02-15 01:16:14 +03:00
|
|
|
int required_major = 0;
|
|
|
|
int required_minor = 0;
|
|
|
|
int required_patch = 0;
|
2010-04-23 17:50:02 +04:00
|
|
|
int required_tweak = 0;
|
|
|
|
if(sscanf(version_string.c_str(), "%u.%u.%u.%u",
|
|
|
|
&required_major, &required_minor,
|
|
|
|
&required_patch, &required_tweak) < 2)
|
2002-04-18 00:16:06 +04:00
|
|
|
{
|
2006-02-15 01:16:14 +03:00
|
|
|
cmOStringStream e;
|
2014-03-11 16:35:32 +04:00
|
|
|
e << "could not parse VERSION \"" << version_string << "\".";
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(e.str());
|
2006-02-15 01:16:14 +03:00
|
|
|
return false;
|
2002-04-18 00:16:06 +04:00
|
|
|
}
|
2006-02-15 01:16:14 +03:00
|
|
|
|
|
|
|
// Compare the version numbers.
|
2009-09-11 16:18:15 +04:00
|
|
|
if((current_major < required_major) ||
|
|
|
|
(current_major == required_major &&
|
|
|
|
current_minor < required_minor) ||
|
|
|
|
(current_major == required_major &&
|
|
|
|
current_minor == required_minor &&
|
2010-04-23 17:50:02 +04:00
|
|
|
current_patch < required_patch) ||
|
|
|
|
(current_major == required_major &&
|
|
|
|
current_minor == required_minor &&
|
|
|
|
current_patch == required_patch &&
|
|
|
|
current_tweak < required_tweak))
|
2002-04-18 00:16:06 +04:00
|
|
|
{
|
2006-02-15 01:16:14 +03:00
|
|
|
// The current version is too low.
|
|
|
|
cmOStringStream e;
|
2014-03-11 16:35:32 +04:00
|
|
|
e << "CMake " << version_string
|
2008-03-24 17:56:26 +03:00
|
|
|
<< " or higher is required. You are running version "
|
2010-04-23 17:50:02 +04:00
|
|
|
<< cmVersion::GetCMakeVersion();
|
2008-03-24 17:56:26 +03:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
2008-03-05 02:42:06 +03:00
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
2008-03-24 17:56:26 +03:00
|
|
|
return true;
|
2002-04-18 00:16:06 +04:00
|
|
|
}
|
2006-02-15 01:16:14 +03:00
|
|
|
|
2009-01-03 23:47:58 +03:00
|
|
|
// The version is not from the future, so enforce unknown arguments.
|
|
|
|
if(!this->EnforceUnknownArguments())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-11 16:18:15 +04:00
|
|
|
if (required_major < 2 || (required_major == 2 && required_minor < 4))
|
2008-03-07 19:43:47 +03:00
|
|
|
{
|
2013-10-18 19:25:49 +04:00
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::AUTHOR_WARNING,
|
|
|
|
"Compatibility with CMake < 2.4 is not supported by CMake >= 3.0.");
|
2008-03-07 19:43:47 +03:00
|
|
|
this->Makefile->SetPolicyVersion("2.4");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->Makefile->SetPolicyVersion(version_string.c_str());
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-04-18 00:16:06 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-03 23:47:58 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCMakeMinimumRequired::EnforceUnknownArguments()
|
|
|
|
{
|
|
|
|
if(!this->UnknownArguments.empty())
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "called with unknown argument \""
|
|
|
|
<< this->UnknownArguments[0] << "\".";
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(e.str());
|
2009-01-03 23:47:58 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|