2001-02-13 03:49:52 +03:00
|
|
|
// This file is used to compile all the commands
|
|
|
|
// that CMake knows about at compile time.
|
|
|
|
// This is sort of a boot strapping approach since you would
|
|
|
|
// like to have CMake to build CMake.
|
|
|
|
#include "cmCommands.h"
|
2001-02-12 22:26:25 +03:00
|
|
|
#include "cmAbstractFilesCommand.cxx"
|
|
|
|
#include "cmAddTargetCommand.cxx"
|
|
|
|
#include "cmAuxSourceDirectoryCommand.cxx"
|
|
|
|
#include "cmExecutablesCommand.cxx"
|
|
|
|
#include "cmFindIncludeCommand.cxx"
|
|
|
|
#include "cmFindLibraryCommand.cxx"
|
|
|
|
#include "cmFindProgramCommand.cxx"
|
|
|
|
#include "cmIncludeDirectoryCommand.cxx"
|
|
|
|
#include "cmLibraryCommand.cxx"
|
|
|
|
#include "cmLinkDirectoriesCommand.cxx"
|
|
|
|
#include "cmLinkLibrariesCommand.cxx"
|
|
|
|
#include "cmProjectCommand.cxx"
|
|
|
|
#include "cmSourceFilesCommand.cxx"
|
|
|
|
#include "cmSourceFilesRequireCommand.cxx"
|
|
|
|
#include "cmSubdirCommand.cxx"
|
|
|
|
#include "cmTestsCommand.cxx"
|
|
|
|
#include "cmUnixDefinesCommand.cxx"
|
|
|
|
#include "cmUnixLibrariesCommand.cxx"
|
|
|
|
#include "cmWin32DefinesCommand.cxx"
|
|
|
|
#include "cmWin32LibrariesCommand.cxx"
|
2001-02-13 03:49:52 +03:00
|
|
|
#include "cmConfigureFileNoAutoconf.cxx"
|
2001-02-27 02:00:49 +03:00
|
|
|
#include "cmCabilCommand.cxx"
|
|
|
|
#include "cmCabilData.cxx"
|
|
|
|
#include "cmCabilDefineSetCommand.cxx"
|
|
|
|
#include "cmCabilInstantiateCommand.cxx"
|
2001-02-28 00:28:56 +03:00
|
|
|
#include "cmCabilInstantiateClassCommand.cxx"
|
2001-02-27 01:17:34 +03:00
|
|
|
#include "cmFindFileCommand.cxx"
|
2001-02-28 00:49:33 +03:00
|
|
|
#include "cmWrapExcludeFilesCommand.cxx"
|
2001-02-27 01:17:34 +03:00
|
|
|
#include "cmWrapTclCommand.cxx"
|
2001-02-28 00:49:33 +03:00
|
|
|
#include "cmBuildSharedLibrariesCommand.cxx"
|
2001-02-13 03:49:52 +03:00
|
|
|
|
|
|
|
void GetPredefinedCommands(std::list<cmCommand*>& commands)
|
|
|
|
{
|
|
|
|
commands.push_back(new cmAbstractFilesCommand);
|
|
|
|
commands.push_back(new cmAddTargetCommand);
|
|
|
|
commands.push_back(new cmAuxSourceDirectoryCommand);
|
|
|
|
commands.push_back(new cmExecutablesCommand);
|
|
|
|
commands.push_back(new cmFindIncludeCommand);
|
|
|
|
commands.push_back(new cmFindLibraryCommand);
|
|
|
|
commands.push_back(new cmFindProgramCommand);
|
|
|
|
commands.push_back(new cmIncludeDirectoryCommand);
|
|
|
|
commands.push_back(new cmLibraryCommand);
|
|
|
|
commands.push_back(new cmLinkDirectoriesCommand);
|
|
|
|
commands.push_back(new cmLinkLibrariesCommand);
|
|
|
|
commands.push_back(new cmProjectCommand);
|
|
|
|
commands.push_back(new cmSourceFilesCommand);
|
|
|
|
commands.push_back(new cmSourceFilesRequireCommand);
|
|
|
|
commands.push_back(new cmSubdirCommand);
|
|
|
|
commands.push_back(new cmTestsCommand);
|
|
|
|
commands.push_back(new cmUnixDefinesCommand);
|
|
|
|
commands.push_back(new cmUnixLibrariesCommand);
|
|
|
|
commands.push_back(new cmWin32DefinesCommand);
|
|
|
|
commands.push_back(new cmWin32LibrariesCommand);
|
|
|
|
commands.push_back(new cmConfigureFileNoAutoconf);
|
2001-02-27 02:00:49 +03:00
|
|
|
commands.push_back(new cmCabilDefineSetCommand);
|
|
|
|
commands.push_back(new cmCabilInstantiateCommand);
|
2001-02-28 00:28:56 +03:00
|
|
|
commands.push_back(new cmCabilInstantiateClassCommand);
|
2001-02-27 01:17:34 +03:00
|
|
|
commands.push_back(new cmFindFileCommand);
|
2001-02-28 00:49:33 +03:00
|
|
|
commands.push_back(new cmWrapExcludeFilesCommand);
|
2001-02-27 01:17:34 +03:00
|
|
|
commands.push_back(new cmWrapTclCommand);
|
2001-02-28 00:49:33 +03:00
|
|
|
commands.push_back(new cmBuildSharedLibrariesCommand);
|
2001-02-13 03:49:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|