CMake/Source/cmCommands.cxx

108 lines
4.1 KiB
C++
Raw Normal View History

2002-01-21 23:30:43 +03:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2002-01-21 23:30:43 +03:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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 above copyright notices 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"
#include "cmDefinePropertyCommand.cxx"
2006-09-22 19:23:51 +04:00
#include "cmElseIfCommand.cxx"
2006-03-22 19:15:35 +03:00
#include "cmEnableLanguageCommand.cxx"
2006-10-03 22:40:22 +04:00
#include "cmEndMacroCommand.cxx"
2005-01-21 17:38:04 +03:00
#include "cmEndWhileCommand.cxx"
#include "cmExecuteProcessCommand.cxx"
#include "cmExportCommand.cxx"
2003-04-17 00:17:02 +04:00
#include "cmExportLibraryDependencies.cxx"
#include "cmFLTKWrapUICommand.cxx"
#include "cmGetDirectoryPropertyCommand.cxx"
#include "cmGetPropertyCommand.cxx"
#include "cmGetTestPropertyCommand.cxx"
2003-04-17 00:17:02 +04:00
#include "cmIncludeExternalMSProjectCommand.cxx"
#include "cmInstallCommand.cxx"
#include "cmInstallCommandArguments.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 "cmMathCommand.cxx"
2003-04-17 00:17:02 +04:00
#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"
#include "cmSeparateArgumentsCommand.cxx"
#include "cmSetDirectoryPropertiesCommand.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"
// 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);
commands.push_back(new cmDefinePropertyCommand);
2006-09-22 19:23:51 +04:00
commands.push_back(new cmElseIfCommand);
commands.push_back(new cmEnableLanguageCommand);
2006-10-03 22:40:22 +04:00
commands.push_back(new cmEndMacroCommand);
2005-01-21 17:38:04 +03:00
commands.push_back(new cmEndWhileCommand);
commands.push_back(new cmExecuteProcessCommand);
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 cmGetDirectoryPropertyCommand);
commands.push_back(new cmGetPropertyCommand);
commands.push_back(new cmGetTestPropertyCommand);
2003-04-17 00:17:02 +04:00
commands.push_back(new cmIncludeExternalMSProjectCommand);
commands.push_back(new cmInstallCommand);
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 cmMathCommand);
2003-04-17 00:17:02 +04:00
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);
commands.push_back(new cmSeparateArgumentsCommand);
commands.push_back(new cmSetDirectoryPropertiesCommand);
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
}