removed some includes

This commit is contained in:
Ken Martin 2002-09-27 16:24:10 -04:00
parent eb6bba34cd
commit 7ddb408621
23 changed files with 8 additions and 20 deletions

View File

@ -15,6 +15,8 @@
=========================================================================*/ =========================================================================*/
#include "cmAbstractFilesCommand.h" #include "cmAbstractFilesCommand.h"
#include "cmMakefile.h"
#include "cmSourceFile.h"
// cmAbstractFilesCommand // cmAbstractFilesCommand
bool cmAbstractFilesCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmAbstractFilesCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmAddDependenciesCommand.h" #include "cmAddDependenciesCommand.h"
#include "cmCacheManager.h"
// cmDependenciesCommand // cmDependenciesCommand
bool cmAddDependenciesCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmAddDependenciesCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmAddExecutableCommand.h" #include "cmAddExecutableCommand.h"
#include "cmCacheManager.h"
// cmExecutableCommand // cmExecutableCommand
bool cmAddExecutableCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmAddExecutableCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmAddLibraryCommand.h" #include "cmAddLibraryCommand.h"
#include "cmCacheManager.h"
// cmLibraryCommand // cmLibraryCommand
bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmAddTestCommand.h" #include "cmAddTestCommand.h"
#include "cmCacheManager.h"
// cmExecutableCommand // cmExecutableCommand
bool cmAddTestCommand::InitialPass(std::vector<std::string> const& args) bool cmAddTestCommand::InitialPass(std::vector<std::string> const& args)

View File

@ -16,6 +16,7 @@
=========================================================================*/ =========================================================================*/
#include "cmAuxSourceDirectoryCommand.h" #include "cmAuxSourceDirectoryCommand.h"
#include "cmDirectory.h" #include "cmDirectory.h"
#include "cmSourceFile.h"
// cmAuxSourceDirectoryCommand // cmAuxSourceDirectoryCommand
bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& args) bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& args)

View File

@ -18,7 +18,7 @@
#define cmCommand_h #define cmCommand_h
#include "cmStandardIncludes.h" #include "cmStandardIncludes.h"
#include "cmMakefile.h" class cmMakefile;
/** \class cmCommand /** \class cmCommand
* \brief Superclass for all commands in CMake. * \brief Superclass for all commands in CMake.

View File

@ -15,7 +15,7 @@
=========================================================================*/ =========================================================================*/
#include "cmCreateTestSourceList.h" #include "cmCreateTestSourceList.h"
#include "cmSourceFile.h"
// cmCreateTestSourceList // cmCreateTestSourceList
bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& argsIn) bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmElseCommand.h" #include "cmElseCommand.h"
#include "cmCacheManager.h"
bool cmElseCommand::InitialPass(std::vector<std::string> const&) bool cmElseCommand::InitialPass(std::vector<std::string> const&)
{ {

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmEnableTestingCommand.h" #include "cmEnableTestingCommand.h"
#include "cmCacheManager.h"
// we do this in the final pass so that we now the subdirs have all // we do this in the final pass so that we now the subdirs have all
// been defined // been defined

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmEndForEachCommand.h" #include "cmEndForEachCommand.h"
#include "cmCacheManager.h"
bool cmEndForEachCommand::InitialPass(std::vector<std::string> const& args) bool cmEndForEachCommand::InitialPass(std::vector<std::string> const& args)
{ {

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmEndIfCommand.h" #include "cmEndIfCommand.h"
#include "cmCacheManager.h"
bool cmEndIfCommand::InitialPass(std::vector<std::string> const&) bool cmEndIfCommand::InitialPass(std::vector<std::string> const&)
{ {

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmForEachCommand.h" #include "cmForEachCommand.h"
#include "cmCacheManager.h"
bool cmForEachFunctionBlocker:: bool cmForEachFunctionBlocker::
IsFunctionBlocked(const char *name, const std::vector<std::string> &args, IsFunctionBlocked(const char *name, const std::vector<std::string> &args,

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmIfCommand.h" #include "cmIfCommand.h"
#include "cmCacheManager.h"
bool cmIfFunctionBlocker:: bool cmIfFunctionBlocker::
IsFunctionBlocked(const char *name, const std::vector<std::string> &args, IsFunctionBlocked(const char *name, const std::vector<std::string> &args,

View File

@ -15,7 +15,7 @@
=========================================================================*/ =========================================================================*/
#include "cmIncludeDirectoryCommand.h" #include "cmIncludeDirectoryCommand.h"
#include "cmCacheManager.h"
// cmIncludeDirectoryCommand // cmIncludeDirectoryCommand
bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& argsIn)
{ {

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmInstallFilesCommand.h" #include "cmInstallFilesCommand.h"
#include "cmCacheManager.h"
// cmExecutableCommand // cmExecutableCommand
bool cmInstallFilesCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmInstallFilesCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmInstallProgramsCommand.h" #include "cmInstallProgramsCommand.h"
#include "cmCacheManager.h"
// cmExecutableCommand // cmExecutableCommand
bool cmInstallProgramsCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmInstallProgramsCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmInstallTargetsCommand.h" #include "cmInstallTargetsCommand.h"
#include "cmCacheManager.h"
// cmExecutableCommand // cmExecutableCommand
bool cmInstallTargetsCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmInstallTargetsCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmMacroCommand.h" #include "cmMacroCommand.h"
#include "cmCacheManager.h"
bool cmMacroFunctionBlocker:: bool cmMacroFunctionBlocker::
IsFunctionBlocked(const char *name, const std::vector<std::string> &args, IsFunctionBlocked(const char *name, const std::vector<std::string> &args,

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmMessageCommand.h" #include "cmMessageCommand.h"
#include "cmCacheManager.h"
// cmLibraryCommand // cmLibraryCommand
bool cmMessageCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmMessageCommand::InitialPass(std::vector<std::string> const& argsIn)

View File

@ -16,6 +16,7 @@
=========================================================================*/ =========================================================================*/
#include "cmTarget.h" #include "cmTarget.h"
#include "cmMakefile.h" #include "cmMakefile.h"
#include "cmSourceFile.h"
#include <map> #include <map>
#include <set> #include <set>

View File

@ -19,7 +19,7 @@
#include "cmStandardIncludes.h" #include "cmStandardIncludes.h"
#include "cmCustomCommand.h" #include "cmCustomCommand.h"
#include "cmSourceFile.h" class cmSourceFile;
/** \class cmTarget /** \class cmTarget
* \brief Represent a library or executable target loaded from a makefile. * \brief Represent a library or executable target loaded from a makefile.

View File

@ -15,7 +15,6 @@
=========================================================================*/ =========================================================================*/
#include "cmWriteFileCommand.h" #include "cmWriteFileCommand.h"
#include "cmCacheManager.h"
// cmLibraryCommand // cmLibraryCommand
bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& argsIn) bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& argsIn)