ENH: backwards compatible for VTK 4.0, add cmake version requires
This commit is contained in:
parent
b7c368b5e3
commit
0415b58573
@ -39,12 +39,16 @@ bool cmAbstractFilesCommand::InitialPass(std::vector<std::string> const& argsIn)
|
|||||||
sf->SetIsAnAbstractClass(true);
|
sf->SetIsAnAbstractClass(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
// for VTK 4.0 we have to support missing abstract sources
|
||||||
|
if(m_Makefile->GetDefinition("CMAKE_MINIMUM_REQUIRED_VERSION"))
|
||||||
{
|
{
|
||||||
m += *j;
|
m += *j;
|
||||||
m += "\n";
|
m += "\n";
|
||||||
ret = false;
|
ret = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if(!ret)
|
if(!ret)
|
||||||
{
|
{
|
||||||
this->SetError(m.c_str());
|
this->SetError(m.c_str());
|
||||||
|
@ -18,19 +18,17 @@
|
|||||||
|
|
||||||
|
|
||||||
// cmAddCustomCommandCommand
|
// cmAddCustomCommandCommand
|
||||||
bool cmAddCustomCommandCommand::InitialPass(std::vector<std::string> const& argsIn)
|
bool cmAddCustomCommandCommand::InitialPass(std::vector<std::string> const& args)
|
||||||
{
|
{
|
||||||
/* Let's complain at the end of this function about the lack of a particular
|
/* Let's complain at the end of this function about the lack of a particular
|
||||||
arg. For the moment, let's say that COMMAND, TARGET are always
|
arg. For the moment, let's say that COMMAND, TARGET are always
|
||||||
required.
|
required.
|
||||||
*/
|
*/
|
||||||
if (argsIn.size() < 4)
|
if (args.size() < 4)
|
||||||
{
|
{
|
||||||
this->SetError("called with wrong number of arguments.");
|
this->SetError("called with wrong number of arguments.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
std::vector<std::string> args;
|
|
||||||
cmSystemTools::ExpandListArguments(argsIn, args);
|
|
||||||
|
|
||||||
std::string source, command, target;
|
std::string source, command, target;
|
||||||
std::vector<std::string> command_args, depends, outputs;
|
std::vector<std::string> command_args, depends, outputs;
|
||||||
|
45
Source/cmCMakeMinimumRequired.cxx
Normal file
45
Source/cmCMakeMinimumRequired.cxx
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
Program: Insight Segmentation & Registration Toolkit
|
||||||
|
Module: $RCSfile$
|
||||||
|
Language: C++
|
||||||
|
Date: $Date$
|
||||||
|
Version: $Revision$
|
||||||
|
|
||||||
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
||||||
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
||||||
|
|
||||||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||||||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. See the above copyright notices for more information.
|
||||||
|
|
||||||
|
=========================================================================*/
|
||||||
|
#include "cmCMakeMinimumRequired.h"
|
||||||
|
|
||||||
|
// cmCMakeMinimumRequired
|
||||||
|
bool cmCMakeMinimumRequired::InitialPass(std::vector<std::string> const& args)
|
||||||
|
{
|
||||||
|
if(args.size() != 2)
|
||||||
|
{
|
||||||
|
this->SetError("called with incorrect number of arguments");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(args[0] == "VERSION")
|
||||||
|
{
|
||||||
|
m_Makefile->AddDefinition("CMAKE_MINIMUM_REQUIRED_VERSION", args[1].c_str());
|
||||||
|
}
|
||||||
|
float version = float(m_Makefile->GetMajorVersion());
|
||||||
|
version += (float(m_Makefile->GetMinorVersion()) * .1);
|
||||||
|
float reqVersion = 0;
|
||||||
|
sscanf(args[1].c_str(), "%f", &reqVersion);
|
||||||
|
if(reqVersion > version)
|
||||||
|
{
|
||||||
|
std::strstream str;
|
||||||
|
str << "WARNING: This project requires version: " << args[1].c_str() << " of cmake.\n"
|
||||||
|
<< "You are running version: " << version << std::ends;
|
||||||
|
cmSystemTools::Message(str.str());
|
||||||
|
delete [] str.str();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
79
Source/cmCMakeMinimumRequired.h
Normal file
79
Source/cmCMakeMinimumRequired.h
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
Program: Insight Segmentation & Registration Toolkit
|
||||||
|
Module: $RCSfile$
|
||||||
|
Language: C++
|
||||||
|
Date: $Date$
|
||||||
|
Version: $Revision$
|
||||||
|
|
||||||
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
||||||
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
||||||
|
|
||||||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||||||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. See the above copyright notices for more information.
|
||||||
|
|
||||||
|
=========================================================================*/
|
||||||
|
#ifndef cmCMakeMinimumRequired_h
|
||||||
|
#define cmCMakeMinimumRequired_h
|
||||||
|
|
||||||
|
#include "cmStandardIncludes.h"
|
||||||
|
#include "cmCommand.h"
|
||||||
|
|
||||||
|
/** \class cmCMakeMinimumRequired
|
||||||
|
* \brief Build a CMAKE variable
|
||||||
|
*
|
||||||
|
* cmCMakeMinimumRequired sets a variable to a value with expansion.
|
||||||
|
*/
|
||||||
|
class cmCMakeMinimumRequired : public cmCommand
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
/**
|
||||||
|
* This is a virtual constructor for the command.
|
||||||
|
*/
|
||||||
|
virtual cmCommand* Clone()
|
||||||
|
{
|
||||||
|
return new cmCMakeMinimumRequired;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is called when the command is first encountered in
|
||||||
|
* the CMakeLists.txt file.
|
||||||
|
*/
|
||||||
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This determines if the command gets propagated down
|
||||||
|
* to makefiles located in subdirectories.
|
||||||
|
*/
|
||||||
|
virtual bool IsInherited() {return true;}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the command as specified in CMakeList.txt.
|
||||||
|
*/
|
||||||
|
virtual const char* GetName() {return "CMAKE_MINIMUM_REQUIRED";}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Succinct documentation.
|
||||||
|
*/
|
||||||
|
virtual const char* GetTerseDocumentation()
|
||||||
|
{
|
||||||
|
return "Determine the command line that will build this project.";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* More documentation.
|
||||||
|
*/
|
||||||
|
virtual const char* GetFullDocumentation()
|
||||||
|
{
|
||||||
|
return
|
||||||
|
"CMAKE_MINIMUM_REQUIRED(NAME MAKECOMMAND)\n"
|
||||||
|
"Within CMAKE set NAME to the command that will build this project from the command line using MAKECOMMAND.";
|
||||||
|
}
|
||||||
|
|
||||||
|
cmTypeMacro(cmCMakeMinimumRequired, cmCommand);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
@ -29,6 +29,7 @@
|
|||||||
#include "cmAuxSourceDirectoryCommand.cxx"
|
#include "cmAuxSourceDirectoryCommand.cxx"
|
||||||
#include "cmBuildCommand.cxx"
|
#include "cmBuildCommand.cxx"
|
||||||
#include "cmBuildNameCommand.cxx"
|
#include "cmBuildNameCommand.cxx"
|
||||||
|
#include "cmCMakeMinimumRequired.cxx"
|
||||||
#include "cmConfigureFileCommand.cxx"
|
#include "cmConfigureFileCommand.cxx"
|
||||||
#include "cmCreateTestSourceList.cxx"
|
#include "cmCreateTestSourceList.cxx"
|
||||||
#include "cmElseCommand.cxx"
|
#include "cmElseCommand.cxx"
|
||||||
@ -94,6 +95,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
|
|||||||
commands.push_back(new cmAuxSourceDirectoryCommand);
|
commands.push_back(new cmAuxSourceDirectoryCommand);
|
||||||
commands.push_back(new cmBuildCommand);
|
commands.push_back(new cmBuildCommand);
|
||||||
commands.push_back(new cmBuildNameCommand);
|
commands.push_back(new cmBuildNameCommand);
|
||||||
|
commands.push_back(new cmCMakeMinimumRequired);
|
||||||
commands.push_back(new cmConfigureFileCommand);
|
commands.push_back(new cmConfigureFileCommand);
|
||||||
commands.push_back(new cmCreateTestSourceList);
|
commands.push_back(new cmCreateTestSourceList);
|
||||||
commands.push_back(new cmElseCommand);
|
commands.push_back(new cmElseCommand);
|
||||||
|
@ -19,9 +19,30 @@
|
|||||||
// cmOptionCommand
|
// cmOptionCommand
|
||||||
bool cmOptionCommand::InitialPass(std::vector<std::string> const& args)
|
bool cmOptionCommand::InitialPass(std::vector<std::string> const& args)
|
||||||
{
|
{
|
||||||
if(args.size() < 2 || args.size() > 3)
|
bool argError = false;
|
||||||
|
if(args.size() < 2)
|
||||||
{
|
{
|
||||||
this->SetError("called with incorrect number of arguments");
|
argError = true;
|
||||||
|
}
|
||||||
|
// for VTK 4.0 we have to support the option command with more than 3 arguments
|
||||||
|
// if CMAKE_MINIMUM_REQUIRED_VERSION is not defined, if CMAKE_MINIMUM_REQUIRED_VERSION
|
||||||
|
// is defined, then we can have stricter checking.
|
||||||
|
if(m_Makefile->GetDefinition("CMAKE_MINIMUM_REQUIRED_VERSION"))
|
||||||
|
{
|
||||||
|
if(args.size() > 3)
|
||||||
|
{
|
||||||
|
argError = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(argError)
|
||||||
|
{
|
||||||
|
std::string m = "called with incorrect number of arguments: ";
|
||||||
|
for(int i =0; i < args.size(); ++i)
|
||||||
|
{
|
||||||
|
m += args[i];
|
||||||
|
m += " ";
|
||||||
|
}
|
||||||
|
this->SetError(m.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
#
|
#
|
||||||
PROJECT (Complex)
|
PROJECT (Complex)
|
||||||
|
|
||||||
|
CMAKE_MINIMUM_REQUIRED(VERSION 1.3)
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Use the ansi CXX compile flag for building cmake
|
# Use the ansi CXX compile flag for building cmake
|
||||||
#
|
#
|
||||||
|
@ -647,6 +647,14 @@ int main()
|
|||||||
#endif
|
#endif
|
||||||
#endif // defined(_WIN32) && !defined(__CYGWIN__)
|
#endif // defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
|
|
||||||
|
if(strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "1.3") == 0)
|
||||||
|
{
|
||||||
|
cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 1.3");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cmFailed("CMAKE_MINIMUM_REQUIRED_VERSION is not set to the expected 1.3");
|
||||||
|
}
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Summary
|
// Summary
|
||||||
|
|
||||||
|
@ -54,3 +54,4 @@
|
|||||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
#define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}"
|
#define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}"
|
||||||
#endif
|
#endif
|
||||||
|
#define CMAKE_MINIMUM_REQUIRED_VERSION "${CMAKE_MINIMUM_REQUIRED_VERSION}"
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
#
|
#
|
||||||
PROJECT (Complex)
|
PROJECT (Complex)
|
||||||
|
|
||||||
|
CMAKE_MINIMUM_REQUIRED(VERSION 1.3)
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Use the ansi CXX compile flag for building cmake
|
# Use the ansi CXX compile flag for building cmake
|
||||||
#
|
#
|
||||||
|
@ -647,6 +647,14 @@ int main()
|
|||||||
#endif
|
#endif
|
||||||
#endif // defined(_WIN32) && !defined(__CYGWIN__)
|
#endif // defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
|
|
||||||
|
if(strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "1.3") == 0)
|
||||||
|
{
|
||||||
|
cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 1.3");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cmFailed("CMAKE_MINIMUM_REQUIRED_VERSION is not set to the expected 1.3");
|
||||||
|
}
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Summary
|
// Summary
|
||||||
|
|
||||||
|
@ -54,3 +54,4 @@
|
|||||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
#define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}"
|
#define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}"
|
||||||
#endif
|
#endif
|
||||||
|
#define CMAKE_MINIMUM_REQUIRED_VERSION "${CMAKE_MINIMUM_REQUIRED_VERSION}"
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
#
|
#
|
||||||
PROJECT (Complex)
|
PROJECT (Complex)
|
||||||
|
|
||||||
|
CMAKE_MINIMUM_REQUIRED(VERSION 1.3)
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Use the ansi CXX compile flag for building cmake
|
# Use the ansi CXX compile flag for building cmake
|
||||||
#
|
#
|
||||||
|
@ -647,6 +647,14 @@ int main()
|
|||||||
#endif
|
#endif
|
||||||
#endif // defined(_WIN32) && !defined(__CYGWIN__)
|
#endif // defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
|
|
||||||
|
if(strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "1.3") == 0)
|
||||||
|
{
|
||||||
|
cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 1.3");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cmFailed("CMAKE_MINIMUM_REQUIRED_VERSION is not set to the expected 1.3");
|
||||||
|
}
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Summary
|
// Summary
|
||||||
|
|
||||||
|
@ -54,3 +54,4 @@
|
|||||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
#define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}"
|
#define REGISTRY_TEST_PATH "${REGISTRY_TEST_PATH}"
|
||||||
#endif
|
#endif
|
||||||
|
#define CMAKE_MINIMUM_REQUIRED_VERSION "${CMAKE_MINIMUM_REQUIRED_VERSION}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user