2002-04-18 00:16:06 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-04-18 00:16:06 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-04-18 00:16:06 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-04-18 00:16:06 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#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;
|
|
|
|
bool fatal_error = 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;
|
|
|
|
fatal_error = true;
|
|
|
|
}
|
|
|
|
else if(doing_version)
|
|
|
|
{
|
|
|
|
doing_version = false;
|
|
|
|
version_string = args[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "called with unknown argument \"" << args[i].c_str() << "\".";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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();
|
2006-02-15 01:16:14 +03:00
|
|
|
|
|
|
|
// Parse the required version number. If no patch-level is given
|
|
|
|
// use zero.
|
|
|
|
int required_major = 0;
|
|
|
|
int required_minor = 0;
|
|
|
|
int required_patch = 0;
|
|
|
|
if(sscanf(version_string.c_str(), "%d.%d.%d",
|
|
|
|
&required_major, &required_minor, &required_patch) < 2)
|
2002-04-18 00:16:06 +04:00
|
|
|
{
|
2006-02-15 01:16:14 +03:00
|
|
|
cmOStringStream e;
|
|
|
|
e << "could not parse VERSION \"" << version_string.c_str() << "\".";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return false;
|
2002-04-18 00:16:06 +04:00
|
|
|
}
|
2006-02-15 01:16:14 +03:00
|
|
|
|
|
|
|
// Compare the version numbers.
|
|
|
|
if(current_major < required_major ||
|
|
|
|
current_major == required_major &&
|
|
|
|
current_minor < required_minor ||
|
|
|
|
current_major == required_major &&
|
|
|
|
current_minor == required_minor &&
|
|
|
|
current_patch < required_patch)
|
2002-04-18 00:16:06 +04:00
|
|
|
{
|
2006-02-15 01:16:14 +03:00
|
|
|
// The current version is too low.
|
|
|
|
cmOStringStream e;
|
|
|
|
if(!fatal_error)
|
|
|
|
{
|
|
|
|
e << "WARNING: ";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
e << "This project requires version " << version_string.c_str()
|
|
|
|
<< " of CMake. "
|
2006-02-15 01:16:14 +03:00
|
|
|
<< "You are running version "
|
2006-03-10 21:06:26 +03:00
|
|
|
<< current_major << "." << current_minor << "." << current_patch
|
|
|
|
<< ".\n";
|
2006-02-15 01:16:14 +03:00
|
|
|
if(fatal_error)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(e.str().c_str());
|
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Message(e.str().c_str());
|
|
|
|
}
|
2002-04-18 00:16:06 +04:00
|
|
|
}
|
2006-02-15 01:16:14 +03:00
|
|
|
|
2002-04-18 00:16:06 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|