2001-01-11 08:04:28 -05:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-01-21 15:30:43 -05:00
|
|
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
|
|
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
2001-01-11 08:04:28 -05:00
|
|
|
|
2002-01-21 15:30:43 -05:00
|
|
|
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.
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-18 11:20:24 -05:00
|
|
|
#ifndef cmSourceFilesCommand_h
|
|
|
|
#define cmSourceFilesCommand_h
|
2001-01-05 11:41:20 -05:00
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2001-01-18 11:20:24 -05:00
|
|
|
#include "cmCommand.h"
|
2001-01-05 11:41:20 -05:00
|
|
|
|
2001-01-18 11:20:24 -05:00
|
|
|
/** \class cmSourceFilesCommand
|
2001-01-11 08:04:28 -05:00
|
|
|
* \brief Add source files to the build.
|
|
|
|
*
|
2001-01-18 11:20:24 -05:00
|
|
|
* cmSourceFilesCommand adds source files to the build. The source
|
2001-01-11 08:04:28 -05:00
|
|
|
* files will be added to the current library (if defined by the
|
2001-01-18 11:20:24 -05:00
|
|
|
* LIBRARY(library) command. Use this command to add source files not
|
2001-01-11 08:04:28 -05:00
|
|
|
* dependent on other packages (use SOURCE_FILES_REQUIRED() to add
|
|
|
|
* dependent source files).
|
|
|
|
*
|
2002-01-17 14:11:26 -05:00
|
|
|
* It allows sources to be added even if they are generated by a build
|
|
|
|
* process. This can be achieved usiong GENERATED keyword:
|
|
|
|
* SOURCE_FILES( Project_SRCS
|
|
|
|
* Source1
|
|
|
|
* Source2
|
|
|
|
* ...
|
|
|
|
* GENERATED
|
|
|
|
* SourceThatDoesNotExist )
|
|
|
|
*
|
2001-01-18 11:20:24 -05:00
|
|
|
* \sa cmSourceFilesRequireCommand
|
2001-01-11 08:04:28 -05:00
|
|
|
*/
|
2001-01-18 11:20:24 -05:00
|
|
|
class cmSourceFilesCommand : public cmCommand
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
|
|
|
public:
|
2001-01-11 08:04:28 -05:00
|
|
|
/**
|
2001-01-18 11:20:24 -05:00
|
|
|
* This is a virtual constructor for the command.
|
2001-01-11 08:04:28 -05:00
|
|
|
*/
|
2001-01-18 11:20:24 -05:00
|
|
|
virtual cmCommand* Clone()
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2001-01-18 11:20:24 -05:00
|
|
|
return new cmSourceFilesCommand;
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
/**
|
2001-01-18 11:20:24 -05:00
|
|
|
* This is called when the command is first encountered in
|
2001-01-11 08:04:28 -05:00
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-09-20 15:08:30 -04:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
/**
|
2001-01-18 11:20:24 -05:00
|
|
|
* The name of the command as specified in CMakeList.txt.
|
2001-01-11 08:04:28 -05:00
|
|
|
*/
|
2001-01-05 11:41:20 -05:00
|
|
|
virtual const char* GetName() { return "SOURCE_FILES";}
|
2001-01-11 08:04:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2001-01-12 14:35:15 -05:00
|
|
|
virtual const char* GetTerseDocumentation()
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2001-04-11 14:59:02 -04:00
|
|
|
return "Add a list of source files, associate them with a NAME.";
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
|
|
|
|
2001-01-11 08:04:28 -05:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2001-01-12 14:35:15 -05:00
|
|
|
virtual const char* GetFullDocumentation()
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2001-01-11 08:04:28 -05:00
|
|
|
return
|
2002-01-17 14:11:26 -05:00
|
|
|
"SOURCE_FILES(NAME file1 file2 ... [ GENERATED generated_file1 ... ])";
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
2001-02-26 12:07:53 -05:00
|
|
|
|
|
|
|
cmTypeMacro(cmSourceFilesCommand, cmCommand);
|
2001-01-05 11:41:20 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|