CMake/Source/cmCommands.cxx

90 lines
3.4 KiB
C++
Raw Normal View History

2002-01-21 15:30:43 -05:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2002-01-21 15:30:43 -05: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 15:30:43 -05: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-16 16:17:02 -04:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
#include "cmAuxSourceDirectoryCommand.cxx"
2005-01-21 09:38:04 -05:00
#include "cmEndWhileCommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmExportLibraryDependencies.cxx"
#include "cmEnableLanguageCommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmFLTKWrapUICommand.cxx"
#include "cmGetCMakePropertyCommand.cxx"
#include "cmGetDirectoryPropertyCommand.cxx"
#include "cmGetTestPropertyCommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmIncludeExternalMSProjectCommand.cxx"
#include "cmLinkLibrariesCommand.cxx"
#include "cmLoadCacheCommand.cxx"
#include "cmMathCommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmOutputRequiredFilesCommand.cxx"
#include "cmRemoveCommand.cxx"
#include "cmSetDirectoryPropertiesCommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmSetTargetPropertiesCommand.cxx"
#include "cmSetTestsPropertiesCommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmSourceGroupCommand.cxx"
2002-04-22 11:50:43 -04:00
#include "cmVTKMakeInstantiatorCommand.cxx"
#include "cmVTKWrapJavaCommand.cxx"
#include "cmVTKWrapPythonCommand.cxx"
#include "cmVTKWrapTclCommand.cxx"
2001-10-15 14:19:53 -04:00
#include "cmQTWrapCPPCommand.cxx"
#include "cmQTWrapUICommand.cxx"
2003-04-16 16:17:02 -04:00
#include "cmUseMangledMesaCommand.cxx"
#include "cmUtilitySourceCommand.cxx"
2005-01-21 09:38:04 -05:00
#include "cmWhileCommand.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 10:52:04 -04:00
void GetPredefinedCommands(std::list<cmCommand*>&
#if defined(CMAKE_BUILD_WITH_CMAKE)
commands
#endif
)
{
2003-04-16 16:17:02 -04:00
#if defined(CMAKE_BUILD_WITH_CMAKE)
commands.push_back(new cmAuxSourceDirectoryCommand);
commands.push_back(new cmEnableLanguageCommand);
2005-01-21 09:38:04 -05:00
commands.push_back(new cmEndWhileCommand);
2003-04-16 16:17:02 -04:00
commands.push_back(new cmExportLibraryDependenciesCommand);
commands.push_back(new cmFLTKWrapUICommand);
commands.push_back(new cmGetCMakePropertyCommand);
commands.push_back(new cmGetDirectoryPropertyCommand);
commands.push_back(new cmGetTestPropertyCommand);
2003-04-16 16:17:02 -04:00
commands.push_back(new cmIncludeExternalMSProjectCommand);
commands.push_back(new cmLinkLibrariesCommand);
commands.push_back(new cmLoadCacheCommand);
commands.push_back(new cmLoadCommandCommand);
commands.push_back(new cmMathCommand);
2003-04-16 16:17:02 -04:00
commands.push_back(new cmOutputRequiredFilesCommand);
commands.push_back(new cmRemoveCommand);
commands.push_back(new cmSetDirectoryPropertiesCommand);
2003-04-16 16:17:02 -04:00
commands.push_back(new cmSetTargetPropertiesCommand);
commands.push_back(new cmSetTestsPropertiesCommand);
2003-04-16 16:17:02 -04:00
commands.push_back(new cmSourceGroupCommand);
2002-04-22 11:50:43 -04:00
commands.push_back(new cmVTKMakeInstantiatorCommand);
2001-05-03 15:28:06 -04:00
commands.push_back(new cmVTKWrapJavaCommand);
2001-04-24 16:49:12 -04:00
commands.push_back(new cmVTKWrapPythonCommand);
commands.push_back(new cmVTKWrapTclCommand);
2001-10-15 14:19:53 -04:00
commands.push_back(new cmQTWrapCPPCommand);
commands.push_back(new cmQTWrapUICommand);
2003-04-16 16:17:02 -04:00
commands.push_back(new cmUseMangledMesaCommand);
commands.push_back(new cmUtilitySourceCommand);
2005-01-21 09:38:04 -05:00
commands.push_back(new cmWhileCommand);
2003-04-16 16:17:02 -04:00
#endif
}