CMake/Source/cmSubdirRule.h

81 lines
1.8 KiB
C
Raw Normal View History

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.
=========================================================================*/
#ifndef cmSubdirRule_h
#define cmSubdirRule_h
#include "cmStandardIncludes.h"
#include "cmRuleMaker.h"
2001-01-11 16:04:28 +03: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.
*/
class cmSubdirRule : public cmRuleMaker
{
public:
2001-01-11 16:04:28 +03:00
/**
* This is a virtual constructor for the rule.
*/
virtual cmRuleMaker* Clone()
{
2001-01-11 16:04:28 +03:00
return new cmSubdirRule;
}
2001-01-11 16:04:28 +03:00
/**
* This is called when the rule is first encountered in
* the CMakeLists.txt file.
*/
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.
*/
virtual void FinalPass() { }
2001-01-11 16:04:28 +03:00
/**
* The name of the rule as specified in CMakeList.txt.
*/
virtual const char* GetName() { return "SUBDIRS";}
2001-01-11 16:04:28 +03:00
/**
* Succinct documentation.
*/
2001-01-12 22:35:15 +03:00
virtual const char* GetTerseDocumentation()
{
2001-01-11 16:04:28 +03:00
return "Add a list of subdirectories to the build.";
}
2001-01-11 16:04:28 +03:00
/**
* More documentation.
*/
2001-01-12 22:35:15 +03:00
virtual const char* GetFullDocumentation()
{
2001-01-11 16:04:28 +03:00
return
"SUBDIRS(dir1 dir2 ...)\n"
2001-01-12 21:07:20 +03:00
"Add a list of subdirectories to the build.\n"
2001-01-11 16:04:28 +03:00
"This will cause any CMakeLists.txt files in the sub directories\n"
"to be processed by CMake.";
}
};
#endif