2001-01-11 08:04:28 -05: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 11:41:20 -05:00
|
|
|
#ifndef cmSubdirRule_h
|
|
|
|
#define cmSubdirRule_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmRuleMaker.h"
|
|
|
|
|
2001-01-11 08:04:28 -05:00
|
|
|
/** \class cmSubdirRule
|
|
|
|
* \brief Specify a list of subdirectories to build.
|
|
|
|
*
|
|
|
|
* cmSubdirRule specifies a list of subdirectories to process
|
|
|
|
* by CMake. For each subdirectory listed, CMake will descend
|
|
|
|
* into that subdirectory and process any CMakeLists.txt found.
|
|
|
|
*/
|
2001-01-05 11:41:20 -05:00
|
|
|
class cmSubdirRule : public cmRuleMaker
|
|
|
|
{
|
|
|
|
public:
|
2001-01-11 08:04:28 -05:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the rule.
|
|
|
|
*/
|
2001-01-05 11:41:20 -05:00
|
|
|
virtual cmRuleMaker* Clone()
|
|
|
|
{
|
2001-01-11 08:04:28 -05:00
|
|
|
return new cmSubdirRule;
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the rule is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-01-05 11:41:20 -05:00
|
|
|
virtual bool Invoke(std::vector<std::string>& args);
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called at the end after all the information
|
|
|
|
* specified by the rules is accumulated.
|
|
|
|
*/
|
2001-01-05 11:41:20 -05:00
|
|
|
virtual void FinalPass() { }
|
|
|
|
|
2001-01-11 08:04:28 -05:00
|
|
|
/**
|
|
|
|
* The name of the rule as specified in CMakeList.txt.
|
|
|
|
*/
|
2001-01-05 11:41:20 -05:00
|
|
|
virtual const char* GetName() { return "SUBDIRS";}
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2001-01-10 17:05:42 -05:00
|
|
|
virtual const char* TerseDocumentation()
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2001-01-11 08:04:28 -05:00
|
|
|
return "Add a list of subdirectories to the build.";
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
|
|
|
|
2001-01-11 08:04:28 -05:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2001-01-10 17:05:42 -05:00
|
|
|
virtual const char* FullDocumentation()
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2001-01-11 08:04:28 -05:00
|
|
|
return
|
|
|
|
"Add a list of subdirectories to the build.\n"
|
|
|
|
"SUBDIRS(dir1 dir2 ...)\n"
|
|
|
|
"This will cause any CMakeLists.txt files in the sub directories\n"
|
|
|
|
"to be processed by CMake.";
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|