2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-01-21 23:30:43 +03: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.
|
2002-01-21 23:30:43 +03: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-02-13 03:49:52 +03:00
|
|
|
#include "cmCommands.h"
|
2003-04-17 00:17:02 +04:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
#include "cmAuxSourceDirectoryCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmBuildNameCommand.cxx"
|
2006-09-22 19:23:51 +04:00
|
|
|
#include "cmElseIfCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmEnableLanguageCommand.cxx"
|
2005-01-21 17:38:04 +03:00
|
|
|
#include "cmEndWhileCommand.cxx"
|
2007-06-08 19:57:16 +04:00
|
|
|
#include "cmExportCommand.cxx"
|
2003-04-17 00:17:02 +04:00
|
|
|
#include "cmExportLibraryDependencies.cxx"
|
|
|
|
#include "cmFLTKWrapUICommand.cxx"
|
|
|
|
#include "cmIncludeExternalMSProjectCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmInstallProgramsCommand.cxx"
|
2003-04-17 00:17:02 +04:00
|
|
|
#include "cmLinkLibrariesCommand.cxx"
|
|
|
|
#include "cmLoadCacheCommand.cxx"
|
|
|
|
#include "cmOutputRequiredFilesCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmQTWrapCPPCommand.cxx"
|
|
|
|
#include "cmQTWrapUICommand.cxx"
|
2003-04-17 00:17:02 +04:00
|
|
|
#include "cmRemoveCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmRemoveDefinitionsCommand.cxx"
|
2003-04-17 00:17:02 +04:00
|
|
|
#include "cmSourceGroupCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmSubdirDependsCommand.cxx"
|
|
|
|
#include "cmUseMangledMesaCommand.cxx"
|
|
|
|
#include "cmUtilitySourceCommand.cxx"
|
|
|
|
#include "cmVariableRequiresCommand.cxx"
|
2007-04-11 23:13:05 +04:00
|
|
|
#include "cmVariableWatchCommand.cxx"
|
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
#include "cmWhileCommand.cxx"
|
2006-03-22 19:15:35 +03:00
|
|
|
#include "cmWriteFileCommand.cxx"
|
2003-04-17 16:03:55 +04:00
|
|
|
|
|
|
|
// This one must be last because it includes windows.h and
|
|
|
|
// windows.h #defines GetCurrentDirectory which is a member
|
|
|
|
// of cmMakefile
|
|
|
|
#include "cmLoadCommandCommand.cxx"
|
2002-08-27 16:36:03 +04:00
|
|
|
#endif
|
2002-08-26 18:52:04 +04:00
|
|
|
|
2005-02-24 18:14:56 +03:00
|
|
|
void GetPredefinedCommands(std::list<cmCommand*>&
|
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
commands
|
|
|
|
#endif
|
|
|
|
)
|
2001-02-13 03:49:52 +03:00
|
|
|
{
|
2003-04-17 00:17:02 +04:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
commands.push_back(new cmAuxSourceDirectoryCommand);
|
2006-03-22 19:15:35 +03:00
|
|
|
commands.push_back(new cmBuildNameCommand);
|
2006-09-22 19:23:51 +04:00
|
|
|
commands.push_back(new cmElseIfCommand);
|
2004-09-22 22:42:05 +04:00
|
|
|
commands.push_back(new cmEnableLanguageCommand);
|
2005-01-21 17:38:04 +03:00
|
|
|
commands.push_back(new cmEndWhileCommand);
|
2007-06-08 19:57:16 +04:00
|
|
|
commands.push_back(new cmExportCommand);
|
2003-04-17 00:17:02 +04:00
|
|
|
commands.push_back(new cmExportLibraryDependenciesCommand);
|
|
|
|
commands.push_back(new cmFLTKWrapUICommand);
|
|
|
|
commands.push_back(new cmIncludeExternalMSProjectCommand);
|
2006-03-22 19:15:35 +03:00
|
|
|
commands.push_back(new cmInstallProgramsCommand);
|
2003-04-17 00:17:02 +04:00
|
|
|
commands.push_back(new cmLinkLibrariesCommand);
|
|
|
|
commands.push_back(new cmLoadCacheCommand);
|
|
|
|
commands.push_back(new cmLoadCommandCommand);
|
|
|
|
commands.push_back(new cmOutputRequiredFilesCommand);
|
2006-03-22 19:15:35 +03:00
|
|
|
commands.push_back(new cmQTWrapCPPCommand);
|
|
|
|
commands.push_back(new cmQTWrapUICommand);
|
2003-04-17 00:17:02 +04:00
|
|
|
commands.push_back(new cmRemoveCommand);
|
2006-03-22 19:15:35 +03:00
|
|
|
commands.push_back(new cmRemoveDefinitionsCommand);
|
2003-04-17 00:17:02 +04:00
|
|
|
commands.push_back(new cmSourceGroupCommand);
|
2006-03-22 19:15:35 +03:00
|
|
|
commands.push_back(new cmSubdirDependsCommand);
|
|
|
|
commands.push_back(new cmUseMangledMesaCommand);
|
|
|
|
commands.push_back(new cmUtilitySourceCommand);
|
|
|
|
commands.push_back(new cmVariableRequiresCommand);
|
2007-04-11 23:13:05 +04:00
|
|
|
commands.push_back(new cmVariableWatchCommand);
|
2005-01-21 17:38:04 +03:00
|
|
|
commands.push_back(new cmWhileCommand);
|
2006-03-22 19:15:35 +03:00
|
|
|
commands.push_back(new cmWriteFileCommand);
|
2003-04-17 00:17:02 +04:00
|
|
|
#endif
|
2001-02-13 03:49:52 +03:00
|
|
|
}
|