CMake/Source/cmCommands.cxx

76 lines
2.9 KiB
C++
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2002-01-21 23:30:43 +03: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
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.
============================================================================*/
#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"
#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"
2006-03-22 19:15:35 +03:00
#include "cmWriteFileCommand.cxx"
// This one must be last because it includes windows.h and
// windows.h #defines GetCurrentDirectory which is a member
// of cmMakefile
#include "cmLoadCommandCommand.cxx"
#endif
2002-08-26 18:52:04 +04:00
void GetPredefinedCommands(std::list<cmCommand*>&
#if defined(CMAKE_BUILD_WITH_CMAKE)
commands
#endif
)
{
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);
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);
2006-03-22 19:15:35 +03:00
commands.push_back(new cmWriteFileCommand);
2003-04-17 00:17:02 +04:00
#endif
}