2001-01-11 01:13:32 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 01:13:32 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-01-11 01:13:32 +03:00
|
|
|
|
2002-01-21 23:30:43 +03: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 01:13:32 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-18 19:20:24 +03:00
|
|
|
#ifndef cmAuxSourceDirectoryCommand_h
|
|
|
|
#define cmAuxSourceDirectoryCommand_h
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
#include "cmCommand.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
/** \class cmAuxSourceDirectoryCommand
|
2001-01-11 01:13:32 +03:00
|
|
|
* \brief Specify auxiliary source code directories.
|
|
|
|
*
|
2001-01-18 19:20:24 +03:00
|
|
|
* cmAuxSourceDirectoryCommand specifies source code directories
|
2001-01-11 01:13:32 +03:00
|
|
|
* that must be built as part of this build process. This directories
|
2001-01-18 19:20:24 +03:00
|
|
|
* are not recursively processed like the SUBDIR command (cmSubdirCommand).
|
|
|
|
* A side effect of this command is to create a subdirectory in the build
|
2001-01-11 01:13:32 +03:00
|
|
|
* directory structure.
|
|
|
|
*/
|
2001-01-18 19:20:24 +03:00
|
|
|
class cmAuxSourceDirectoryCommand : public cmCommand
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
public:
|
2001-01-11 01:13:32 +03:00
|
|
|
/**
|
2001-01-18 19:20:24 +03:00
|
|
|
* This is a virtual constructor for the command.
|
2001-01-11 01:13:32 +03:00
|
|
|
*/
|
2001-01-18 19:20:24 +03:00
|
|
|
virtual cmCommand* Clone()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-18 19:20:24 +03:00
|
|
|
return new cmAuxSourceDirectoryCommand;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-01-11 01:13:32 +03:00
|
|
|
|
|
|
|
/**
|
2001-01-18 19:20:24 +03:00
|
|
|
* This is called when the command is first encountered in
|
2001-01-11 01:13:32 +03:00
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-09-20 23:08:30 +04:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
2001-01-11 01:13:32 +03:00
|
|
|
|
|
|
|
/**
|
2001-01-18 19:20:24 +03:00
|
|
|
* The name of the command as specified in CMakeList.txt.
|
2001-01-11 01:13:32 +03:00
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual const char* GetName() { return "AUX_SOURCE_DIRECTORY";}
|
2001-01-11 01:13:32 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2001-01-12 22:35:15 +03:00
|
|
|
virtual const char* GetTerseDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Find all source files in a directory.";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
2001-01-11 01:13:32 +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:13:32 +03:00
|
|
|
return
|
2003-02-15 02:47:16 +03:00
|
|
|
" AUX_SOURCE_DIRECTORY(dir VARIABLE)\n"
|
|
|
|
"Collects the names of all the source files in the specified "
|
2004-07-25 03:58:27 +04:00
|
|
|
"directory and stores the list in the variable provided. This command "
|
|
|
|
"is intended to be used by projects that use explicit template "
|
|
|
|
"instantiation. Template instantiation files can be stored in a "
|
|
|
|
"\"Templates\" subdirectory and collected automatically using this "
|
|
|
|
"command to avoid manually listing all instantiations.\n"
|
|
|
|
"It is tempting to use this command to avoid writing the list of source "
|
|
|
|
"files for a library or executable target. While this seems to work, "
|
|
|
|
"there is no way for CMake to generate a build system that knows when a "
|
|
|
|
"new source file has been added. Normally the generated build system "
|
|
|
|
"knows when it needs to rerun CMake because the CMakeLists.txt file "
|
|
|
|
"is modified to add a new source. When the source is just added to "
|
|
|
|
"the directory without modifying this file, one would have to manually "
|
|
|
|
"rerun CMake to generate a build system incorporating the new file.";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-02-26 20:07:53 +03:00
|
|
|
|
|
|
|
cmTypeMacro(cmAuxSourceDirectoryCommand, cmCommand);
|
2001-01-05 19:41:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|