2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-05-04 19:34:59 +04:00
|
|
|
#ifndef cmAddCustomTargetCommand_h
|
|
|
|
#define cmAddCustomTargetCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmAddCustomTargetCommand
|
|
|
|
* \brief Command that adds a target to the build system.
|
|
|
|
*
|
|
|
|
* cmAddCustomTargetCommand adds an extra target to the build system.
|
|
|
|
* This is useful when you would like to add special
|
|
|
|
* targets like "install,", "clean," and so on.
|
|
|
|
*/
|
|
|
|
class cmAddCustomTargetCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmAddCustomTargetCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-05-04 19:34:59 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName()
|
2007-10-10 19:47:43 +04:00
|
|
|
{return "add_custom_target";}
|
2001-05-04 19:34:59 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Add a target with no output so it will always be built.";
|
2001-05-04 19:34:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" add_custom_target(Name [ALL] [command1 [args1...]]\n"
|
2005-02-22 18:32:44 +03:00
|
|
|
" [COMMAND command2 [args2...] ...]\n"
|
2006-09-28 19:30:49 +04:00
|
|
|
" [DEPENDS depend depend depend ... ]\n"
|
2006-10-05 02:10:30 +04:00
|
|
|
" [WORKING_DIRECTORY dir]\n"
|
2008-10-09 19:01:23 +04:00
|
|
|
" [COMMENT comment] [VERBATIM]\n"
|
|
|
|
" [SOURCES src1 [src2...]])\n"
|
2006-08-17 23:06:37 +04:00
|
|
|
"Adds a target with the given name that executes the given commands. "
|
|
|
|
"The target has no output file and is ALWAYS CONSIDERED OUT OF DATE "
|
2006-08-18 16:57:17 +04:00
|
|
|
"even if the commands try to create a file with the name of the "
|
|
|
|
"target. Use ADD_CUSTOM_COMMAND to generate a file with dependencies. "
|
2006-08-17 23:06:37 +04:00
|
|
|
"By default nothing depends on the custom target. Use "
|
|
|
|
"ADD_DEPENDENCIES to add dependencies to or from other targets. "
|
|
|
|
"If the ALL option is specified "
|
2003-02-15 02:47:16 +03:00
|
|
|
"it indicates that this target should be added to the default build "
|
2006-06-15 18:51:41 +04:00
|
|
|
"target so that it will be run every time "
|
|
|
|
"(the command cannot be called ALL). "
|
|
|
|
"The command and arguments are optional and if not specified an "
|
|
|
|
"empty target will be created. "
|
2006-02-08 18:58:36 +03:00
|
|
|
"If WORKING_DIRECTORY is set, then the command will be run in that "
|
2006-06-15 18:51:41 +04:00
|
|
|
"directory. "
|
2006-10-05 02:10:30 +04:00
|
|
|
"If COMMENT is set, the value will be displayed as a "
|
|
|
|
"message before the commands are executed at build time. "
|
2006-06-15 18:51:41 +04:00
|
|
|
"Dependencies listed with the DEPENDS argument may reference files "
|
2009-03-30 16:27:28 +04:00
|
|
|
"and outputs of custom commands created with add_custom_command() in "
|
|
|
|
"the same directory (CMakeLists.txt file).\n"
|
2009-04-01 18:31:41 +04:00
|
|
|
"If VERBATIM is given then all arguments to the commands will be "
|
|
|
|
"escaped properly for the build tool so that the invoked command "
|
|
|
|
"receives each argument unchanged. "
|
2006-09-28 19:30:49 +04:00
|
|
|
"Note that one level of escapes is still used by the CMake language "
|
2007-10-10 19:47:43 +04:00
|
|
|
"processor before add_custom_target even sees the arguments. "
|
2006-09-28 19:30:49 +04:00
|
|
|
"Use of VERBATIM is recommended as it enables correct behavior. "
|
2009-04-01 18:31:41 +04:00
|
|
|
"When VERBATIM is not given the behavior is platform specific because "
|
|
|
|
"there is no protection of tool-specific special characters."
|
2008-10-09 19:01:23 +04:00
|
|
|
"\n"
|
|
|
|
"The SOURCES option specifies additional source files to be included "
|
|
|
|
"in the custom target. "
|
|
|
|
"Specified source files will be added to IDE project files for "
|
|
|
|
"convenience in editing even if they have not build rules."
|
|
|
|
;
|
2001-05-04 19:34:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmAddCustomTargetCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|