2001-01-11 01:29:46 +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 cmFindIncludeRule_h
|
|
|
|
#define cmFindIncludeRule_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmRuleMaker.h"
|
|
|
|
|
2001-01-11 01:29:46 +03:00
|
|
|
/** \class cmFindIncludeRule
|
|
|
|
* \brief Define a rule that searches for an include file.
|
|
|
|
*
|
2001-01-11 16:04:28 +03:00
|
|
|
* cmFindIncludeRule is used to define a CMake variable include
|
2001-01-11 01:29:46 +03:00
|
|
|
* path location by specifying a file and list of directories.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
class cmFindIncludeRule : public cmRuleMaker
|
|
|
|
{
|
|
|
|
public:
|
2001-01-11 01:29:46 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the rule.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual cmRuleMaker* Clone()
|
|
|
|
{
|
2001-01-11 01:29:46 +03:00
|
|
|
return new cmFindIncludeRule;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-01-11 01:29:46 +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 01:29:46 +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 01:29:46 +03:00
|
|
|
/**
|
|
|
|
* This determines if the rule gets propagated down
|
|
|
|
* to makefiles located in subdirectories.
|
|
|
|
*/
|
|
|
|
virtual bool IsInherited()
|
|
|
|
{return true;}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the rule as specified in CMakeList.txt.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual const char* GetName() { return "FIND_INCLUDE";}
|
2001-01-11 01:29:46 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2001-01-12 22:35:15 +03:00
|
|
|
virtual const char* GetTerseDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-11 01:29:46 +03:00
|
|
|
return "Find an include path.";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
2001-01-11 01:29:46 +03:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2001-01-12 22:35:15 +03:00
|
|
|
virtual const char* GetFullDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-11 01:29:46 +03:00
|
|
|
return
|
2001-01-11 16:04:28 +03:00
|
|
|
"FIND_INCLUDE(DEFINE try1 try2 ...)";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|