2001-01-11 16:04:28 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef cmSourceFilesRequireRule_h
|
|
|
|
#define cmSourceFilesRequireRule_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmRuleMaker.h"
|
|
|
|
|
2001-01-11 16:04:28 +03:00
|
|
|
/** \class cmSourceFilesRequireRule
|
|
|
|
* \brief Add additional sources to the build if certain required files
|
|
|
|
* or CMake variables are defined.
|
|
|
|
*
|
|
|
|
* cmSourceFilesRequireRule conditionally adds source files to the
|
|
|
|
* build if the specified files of CMake variables are defined.
|
|
|
|
* This rule can be used to add source files that depend on external
|
|
|
|
* packages or operating system features.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
class cmSourceFilesRequireRule : public cmRuleMaker
|
|
|
|
{
|
|
|
|
public:
|
2001-01-11 16:04:28 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the rule.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual cmRuleMaker* Clone()
|
|
|
|
{
|
2001-01-11 16:04:28 +03:00
|
|
|
return new cmSourceFilesRequireRule;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-01-11 16:04:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the rule is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual bool Invoke(std::vector<std::string>& args);
|
2001-01-11 16:04:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called at the end after all the information
|
|
|
|
* specified by the rules is accumulated.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual void FinalPass() { }
|
|
|
|
|
2001-01-11 16:04:28 +03:00
|
|
|
/**
|
|
|
|
* The name of the rule as specified in CMakeList.txt.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual const char* GetName() { return "SOURCE_FILES_REQUIRE";}
|
2001-01-11 16:04:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2001-01-11 01:05:42 +03:00
|
|
|
virtual const char* TerseDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-11 16:04:28 +03:00
|
|
|
return "Add a list of source files if the required variables are set.";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
2001-01-11 16:04:28 +03:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2001-01-11 01:05:42 +03:00
|
|
|
virtual const char* FullDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-11 16:04:28 +03:00
|
|
|
return
|
|
|
|
"SOURCE_FILES_REQUIRE(var1 var2 ... SOURCES_BEGIN file1 file2 ...)";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|