fix a batch of include-what-you-use violations
This commit is contained in:
parent
797f7ad87d
commit
5cbb548807
|
@ -14,6 +14,9 @@
|
||||||
|
|
||||||
#include "cmCTestVC.h"
|
#include "cmCTestVC.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
/** \class cmCTestCVS
|
/** \class cmCTestCVS
|
||||||
* \brief Interaction with cvs command-line tool
|
* \brief Interaction with cvs command-line tool
|
||||||
*
|
*
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
#include "cmCTestVC.h"
|
#include "cmCTestVC.h"
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
|
#include <map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
/** \class cmCTestGlobalVC
|
/** \class cmCTestGlobalVC
|
||||||
* \brief Base class for handling globally-versioned trees
|
* \brief Base class for handling globally-versioned trees
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmBreakCommand.h"
|
#include "cmBreakCommand.h"
|
||||||
|
|
||||||
|
#include "cmExecutionStatus.h"
|
||||||
|
|
||||||
// cmBreakCommand
|
// cmBreakCommand
|
||||||
bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||||
cmExecutionStatus& status)
|
cmExecutionStatus& status)
|
||||||
|
|
|
@ -11,38 +11,44 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
|
|
||||||
|
#include "cmAlgorithms.h"
|
||||||
#include "cmCommand.h"
|
#include "cmCommand.h"
|
||||||
#include "cmCommandArgumentParserHelper.h"
|
#include "cmCommandArgumentParserHelper.h"
|
||||||
#include "cmCommands.h"
|
#include "cmCustomCommand.h"
|
||||||
|
#include "cmCustomCommandLines.h"
|
||||||
|
#include "cmExecutionStatus.h"
|
||||||
|
#include "cmExpandedCommandArgument.h"
|
||||||
|
#include "cmFileLockPool.h"
|
||||||
#include "cmFunctionBlocker.h"
|
#include "cmFunctionBlocker.h"
|
||||||
#include "cmGeneratorExpression.h"
|
#include "cmGeneratorExpression.h"
|
||||||
#include "cmGeneratorExpressionEvaluationFile.h"
|
#include "cmGeneratorExpressionEvaluationFile.h"
|
||||||
#include "cmGlobalGenerator.h"
|
#include "cmGlobalGenerator.h"
|
||||||
|
#include "cmInstallGenerator.h"
|
||||||
#include "cmListFileCache.h"
|
#include "cmListFileCache.h"
|
||||||
#include "cmOutputConverter.h"
|
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
#include "cmSourceFileLocation.h"
|
#include "cmSourceFileLocation.h"
|
||||||
#include "cmState.h"
|
#include "cmState.h"
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
#include "cmTest.h"
|
#include "cmTest.h"
|
||||||
|
#include "cmTestGenerator.h"
|
||||||
#include "cmVersion.h"
|
#include "cmVersion.h"
|
||||||
|
#include "cmake.h"
|
||||||
|
|
||||||
#ifdef CMAKE_BUILD_WITH_CMAKE
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
||||||
#include "cmVariableWatch.h"
|
#include "cmVariableWatch.h"
|
||||||
#endif
|
#endif
|
||||||
#include "cmAlgorithms.h"
|
|
||||||
#include "cmInstallGenerator.h"
|
|
||||||
#include "cmTestGenerator.h"
|
|
||||||
#include "cmake.h"
|
|
||||||
#include <stdlib.h> // required for atoi
|
|
||||||
|
|
||||||
#include <cm_auto_ptr.hxx>
|
#include <cm_auto_ptr.hxx>
|
||||||
#include <cmsys/FStream.hxx>
|
#include <cmsys/FStream.hxx>
|
||||||
#include <cmsys/RegularExpression.hxx>
|
#include <cmsys/RegularExpression.hxx>
|
||||||
#include <cmsys/SystemTools.hxx>
|
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <ctype.h> // for isspace
|
#include <ctype.h>
|
||||||
#include <list>
|
#include <sstream>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
// default is not to be building executables
|
// default is not to be building executables
|
||||||
cmMakefile::cmMakefile(cmGlobalGenerator* globalGenerator,
|
cmMakefile::cmMakefile(cmGlobalGenerator* globalGenerator,
|
||||||
|
|
|
@ -12,16 +12,15 @@
|
||||||
#ifndef cmMakefile_h
|
#ifndef cmMakefile_h
|
||||||
#define cmMakefile_h
|
#define cmMakefile_h
|
||||||
|
|
||||||
#include "cmStandardIncludes.h"
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include "cmAlgorithms.h"
|
#include "cmAlgorithms.h"
|
||||||
#include "cmExecutionStatus.h"
|
|
||||||
#include "cmExpandedCommandArgument.h"
|
|
||||||
#include "cmListFileCache.h"
|
#include "cmListFileCache.h"
|
||||||
#include "cmNewLineStyle.h"
|
#include "cmNewLineStyle.h"
|
||||||
|
#include "cmPolicies.h"
|
||||||
#include "cmState.h"
|
#include "cmState.h"
|
||||||
#include "cmSystemTools.h"
|
|
||||||
#include "cmTarget.h"
|
#include "cmTarget.h"
|
||||||
|
#include "cmTargetLinkLibraryType.h"
|
||||||
#include "cmake.h"
|
#include "cmake.h"
|
||||||
|
|
||||||
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
||||||
|
@ -30,6 +29,13 @@
|
||||||
|
|
||||||
#include <cm_auto_ptr.hxx>
|
#include <cm_auto_ptr.hxx>
|
||||||
#include <cmsys/RegularExpression.hxx>
|
#include <cmsys/RegularExpression.hxx>
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <set>
|
||||||
|
#include <stack>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
||||||
#ifdef CMake_HAVE_CXX_UNORDERED_MAP
|
#ifdef CMake_HAVE_CXX_UNORDERED_MAP
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
@ -38,20 +44,20 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stack>
|
|
||||||
|
|
||||||
class cmFunctionBlocker;
|
|
||||||
class cmCommand;
|
class cmCommand;
|
||||||
|
class cmCompiledGeneratorExpression;
|
||||||
|
class cmCustomCommandLines;
|
||||||
|
class cmExecutionStatus;
|
||||||
|
class cmExpandedCommandArgument;
|
||||||
|
class cmExportBuildFileGenerator;
|
||||||
|
class cmFunctionBlocker;
|
||||||
|
class cmGeneratorExpressionEvaluationFile;
|
||||||
|
class cmGlobalGenerator;
|
||||||
class cmInstallGenerator;
|
class cmInstallGenerator;
|
||||||
class cmSourceFile;
|
class cmSourceFile;
|
||||||
class cmTest;
|
class cmTest;
|
||||||
class cmTestGenerator;
|
class cmTestGenerator;
|
||||||
class cmVariableWatch;
|
class cmVariableWatch;
|
||||||
class cmake;
|
|
||||||
class cmMakefileCall;
|
|
||||||
class cmCMakePolicyCommand;
|
|
||||||
class cmGeneratorExpressionEvaluationFile;
|
|
||||||
class cmExportBuildFileGenerator;
|
|
||||||
|
|
||||||
/** \class cmMakefile
|
/** \class cmMakefile
|
||||||
* \brief Process the input CMakeLists.txt file.
|
* \brief Process the input CMakeLists.txt file.
|
||||||
|
|
|
@ -12,12 +12,20 @@
|
||||||
#include "cmMakefileExecutableTargetGenerator.h"
|
#include "cmMakefileExecutableTargetGenerator.h"
|
||||||
|
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalUnixMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
#include "cmLocalGenerator.h"
|
||||||
#include "cmLocalUnixMakefileGenerator3.h"
|
#include "cmLocalUnixMakefileGenerator3.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmOSXBundleGenerator.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
#include "cmake.h"
|
#include "cmake.h"
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
cmMakefileExecutableTargetGenerator::cmMakefileExecutableTargetGenerator(
|
cmMakefileExecutableTargetGenerator::cmMakefileExecutableTargetGenerator(
|
||||||
cmGeneratorTarget* target)
|
cmGeneratorTarget* target)
|
||||||
: cmMakefileTargetGenerator(target)
|
: cmMakefileTargetGenerator(target)
|
||||||
|
|
|
@ -12,8 +12,12 @@
|
||||||
#ifndef cmMakefileExecutableTargetGenerator_h
|
#ifndef cmMakefileExecutableTargetGenerator_h
|
||||||
#define cmMakefileExecutableTargetGenerator_h
|
#define cmMakefileExecutableTargetGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include "cmMakefileTargetGenerator.h"
|
#include "cmMakefileTargetGenerator.h"
|
||||||
|
|
||||||
|
class cmGeneratorTarget;
|
||||||
|
|
||||||
class cmMakefileExecutableTargetGenerator : public cmMakefileTargetGenerator
|
class cmMakefileExecutableTargetGenerator : public cmMakefileTargetGenerator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -11,14 +11,21 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmMakefileLibraryTargetGenerator.h"
|
#include "cmMakefileLibraryTargetGenerator.h"
|
||||||
|
|
||||||
#include "cmAlgorithms.h"
|
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalUnixMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
#include "cmLocalGenerator.h"
|
||||||
#include "cmLocalUnixMakefileGenerator3.h"
|
#include "cmLocalUnixMakefileGenerator3.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmOSXBundleGenerator.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
|
#include "cmState.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
#include "cmake.h"
|
#include "cmake.h"
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
cmMakefileLibraryTargetGenerator::cmMakefileLibraryTargetGenerator(
|
cmMakefileLibraryTargetGenerator::cmMakefileLibraryTargetGenerator(
|
||||||
cmGeneratorTarget* target)
|
cmGeneratorTarget* target)
|
||||||
: cmMakefileTargetGenerator(target)
|
: cmMakefileTargetGenerator(target)
|
||||||
|
|
|
@ -12,8 +12,14 @@
|
||||||
#ifndef cmMakefileLibraryTargetGenerator_h
|
#ifndef cmMakefileLibraryTargetGenerator_h
|
||||||
#define cmMakefileLibraryTargetGenerator_h
|
#define cmMakefileLibraryTargetGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include "cmMakefileTargetGenerator.h"
|
#include "cmMakefileTargetGenerator.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
class cmGeneratorTarget;
|
||||||
|
|
||||||
class cmMakefileLibraryTargetGenerator : public cmMakefileTargetGenerator
|
class cmMakefileLibraryTargetGenerator : public cmMakefileTargetGenerator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -13,23 +13,30 @@
|
||||||
|
|
||||||
#include "cmAlgorithms.h"
|
#include "cmAlgorithms.h"
|
||||||
#include "cmComputeLinkInformation.h"
|
#include "cmComputeLinkInformation.h"
|
||||||
|
#include "cmCustomCommand.h"
|
||||||
#include "cmCustomCommandGenerator.h"
|
#include "cmCustomCommandGenerator.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmGeneratorExpression.h"
|
#include "cmGeneratorExpression.h"
|
||||||
#include "cmGeneratorTarget.h"
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalGenerator.h"
|
|
||||||
#include "cmGlobalUnixMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
|
#include "cmLocalGenerator.h"
|
||||||
#include "cmLocalUnixMakefileGenerator3.h"
|
#include "cmLocalUnixMakefileGenerator3.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
#include "cmSourceFile.h"
|
|
||||||
#include "cmState.h"
|
|
||||||
#include "cmake.h"
|
|
||||||
|
|
||||||
#include "cmMakefileExecutableTargetGenerator.h"
|
#include "cmMakefileExecutableTargetGenerator.h"
|
||||||
#include "cmMakefileLibraryTargetGenerator.h"
|
#include "cmMakefileLibraryTargetGenerator.h"
|
||||||
#include "cmMakefileUtilityTargetGenerator.h"
|
#include "cmMakefileUtilityTargetGenerator.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
|
#include "cmSourceFile.h"
|
||||||
|
#include "cmState.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
|
#include "cm_auto_ptr.hxx"
|
||||||
|
#include "cmake.h"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <sstream>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
|
@ -12,18 +12,22 @@
|
||||||
#ifndef cmMakefileTargetGenerator_h
|
#ifndef cmMakefileTargetGenerator_h
|
||||||
#define cmMakefileTargetGenerator_h
|
#define cmMakefileTargetGenerator_h
|
||||||
|
|
||||||
#include "cmCommonTargetGenerator.h"
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
|
#include "cmCommonTargetGenerator.h"
|
||||||
#include "cmLocalUnixMakefileGenerator3.h"
|
#include "cmLocalUnixMakefileGenerator3.h"
|
||||||
#include "cmOSXBundleGenerator.h"
|
#include "cmOSXBundleGenerator.h"
|
||||||
|
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <map>
|
||||||
|
#include <set>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class cmCustomCommandGenerator;
|
class cmCustomCommandGenerator;
|
||||||
class cmDepends;
|
|
||||||
class cmGeneratorTarget;
|
|
||||||
class cmGeneratedFileStream;
|
class cmGeneratedFileStream;
|
||||||
|
class cmGeneratorTarget;
|
||||||
class cmGlobalUnixMakefileGenerator3;
|
class cmGlobalUnixMakefileGenerator3;
|
||||||
class cmLocalUnixMakefileGenerator3;
|
|
||||||
class cmMakefile;
|
|
||||||
class cmSourceFile;
|
class cmSourceFile;
|
||||||
|
|
||||||
/** \class cmMakefileTargetGenerator
|
/** \class cmMakefileTargetGenerator
|
||||||
|
|
|
@ -12,10 +12,16 @@
|
||||||
#include "cmMakefileUtilityTargetGenerator.h"
|
#include "cmMakefileUtilityTargetGenerator.h"
|
||||||
|
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalUnixMakefileGenerator3.h"
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
||||||
#include "cmLocalUnixMakefileGenerator3.h"
|
#include "cmLocalUnixMakefileGenerator3.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmOSXBundleGenerator.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
|
|
||||||
|
#include <ostream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
cmMakefileUtilityTargetGenerator::cmMakefileUtilityTargetGenerator(
|
cmMakefileUtilityTargetGenerator::cmMakefileUtilityTargetGenerator(
|
||||||
cmGeneratorTarget* target)
|
cmGeneratorTarget* target)
|
||||||
|
|
|
@ -12,8 +12,12 @@
|
||||||
#ifndef cmMakefileUtilityTargetGenerator_h
|
#ifndef cmMakefileUtilityTargetGenerator_h
|
||||||
#define cmMakefileUtilityTargetGenerator_h
|
#define cmMakefileUtilityTargetGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include "cmMakefileTargetGenerator.h"
|
#include "cmMakefileTargetGenerator.h"
|
||||||
|
|
||||||
|
class cmGeneratorTarget;
|
||||||
|
|
||||||
class cmMakefileUtilityTargetGenerator : public cmMakefileTargetGenerator
|
class cmMakefileUtilityTargetGenerator : public cmMakefileTargetGenerator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmNewLineStyle.h"
|
#include "cmNewLineStyle.h"
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
cmNewLineStyle::cmNewLineStyle()
|
cmNewLineStyle::cmNewLineStyle()
|
||||||
: NewLineStyle(Invalid)
|
: NewLineStyle(Invalid)
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,10 @@
|
||||||
#ifndef cmNewLineStyle_h
|
#ifndef cmNewLineStyle_h
|
||||||
#define cmNewLineStyle_h
|
#define cmNewLineStyle_h
|
||||||
|
|
||||||
#include "cmStandardIncludes.h"
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class cmNewLineStyle
|
class cmNewLineStyle
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,18 +13,30 @@
|
||||||
#include "cmNinjaNormalTargetGenerator.h"
|
#include "cmNinjaNormalTargetGenerator.h"
|
||||||
|
|
||||||
#include "cmAlgorithms.h"
|
#include "cmAlgorithms.h"
|
||||||
|
#include "cmCustomCommand.h"
|
||||||
#include "cmCustomCommandGenerator.h"
|
#include "cmCustomCommandGenerator.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmGeneratorTarget.h"
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalNinjaGenerator.h"
|
#include "cmGlobalNinjaGenerator.h"
|
||||||
|
#include "cmLocalGenerator.h"
|
||||||
#include "cmLocalNinjaGenerator.h"
|
#include "cmLocalNinjaGenerator.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
|
#include "cmNinjaTypes.h"
|
||||||
#include "cmOSXBundleGenerator.h"
|
#include "cmOSXBundleGenerator.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
|
#include "cmState.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
|
#include "cmake.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <iterator>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <map>
|
||||||
|
#include <set>
|
||||||
|
#include <sstream>
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
|
@ -13,14 +13,13 @@
|
||||||
#ifndef cmNinjaNormalTargetGenerator_h
|
#ifndef cmNinjaNormalTargetGenerator_h
|
||||||
#define cmNinjaNormalTargetGenerator_h
|
#define cmNinjaNormalTargetGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include "cmNinjaTargetGenerator.h"
|
#include "cmNinjaTargetGenerator.h"
|
||||||
|
|
||||||
#include "cmNinjaTypes.h"
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include <set>
|
|
||||||
|
|
||||||
class cmSourceFile;
|
|
||||||
class cmOSXBundleGenerator;
|
|
||||||
class cmGeneratorTarget;
|
class cmGeneratorTarget;
|
||||||
|
|
||||||
class cmNinjaNormalTargetGenerator : public cmNinjaTargetGenerator
|
class cmNinjaNormalTargetGenerator : public cmNinjaTargetGenerator
|
||||||
|
|
|
@ -18,14 +18,22 @@
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmGeneratorTarget.h"
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalNinjaGenerator.h"
|
#include "cmGlobalNinjaGenerator.h"
|
||||||
|
#include "cmLocalGenerator.h"
|
||||||
#include "cmLocalNinjaGenerator.h"
|
#include "cmLocalNinjaGenerator.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
#include "cmNinjaNormalTargetGenerator.h"
|
#include "cmNinjaNormalTargetGenerator.h"
|
||||||
#include "cmNinjaUtilityTargetGenerator.h"
|
#include "cmNinjaUtilityTargetGenerator.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
|
#include "cmState.h"
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
|
#include "cmake.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
|
#include <map>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
cmNinjaTargetGenerator* cmNinjaTargetGenerator::New(cmGeneratorTarget* target)
|
cmNinjaTargetGenerator* cmNinjaTargetGenerator::New(cmGeneratorTarget* target)
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,19 +13,23 @@
|
||||||
#ifndef cmNinjaTargetGenerator_h
|
#ifndef cmNinjaTargetGenerator_h
|
||||||
#define cmNinjaTargetGenerator_h
|
#define cmNinjaTargetGenerator_h
|
||||||
|
|
||||||
#include "cmCommonTargetGenerator.h"
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
|
#include "cmCommonTargetGenerator.h"
|
||||||
#include "cmGlobalNinjaGenerator.h"
|
#include "cmGlobalNinjaGenerator.h"
|
||||||
#include "cmLocalNinjaGenerator.h"
|
|
||||||
#include "cmNinjaTypes.h"
|
#include "cmNinjaTypes.h"
|
||||||
#include "cmOSXBundleGenerator.h"
|
#include "cmOSXBundleGenerator.h"
|
||||||
|
|
||||||
class cmTarget;
|
#include <set>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
class cmCustomCommand;
|
||||||
class cmGeneratedFileStream;
|
class cmGeneratedFileStream;
|
||||||
class cmGeneratorTarget;
|
class cmGeneratorTarget;
|
||||||
|
class cmLocalNinjaGenerator;
|
||||||
class cmMakefile;
|
class cmMakefile;
|
||||||
class cmSourceFile;
|
class cmSourceFile;
|
||||||
class cmCustomCommand;
|
|
||||||
|
|
||||||
class cmNinjaTargetGenerator : public cmCommonTargetGenerator
|
class cmNinjaTargetGenerator : public cmCommonTargetGenerator
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,9 +15,21 @@
|
||||||
#include "cmCustomCommand.h"
|
#include "cmCustomCommand.h"
|
||||||
#include "cmCustomCommandGenerator.h"
|
#include "cmCustomCommandGenerator.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalNinjaGenerator.h"
|
#include "cmGlobalNinjaGenerator.h"
|
||||||
|
#include "cmLocalNinjaGenerator.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
|
#include "cmNinjaTypes.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
|
#include "cmState.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
|
#include "cmake.h"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
cmNinjaUtilityTargetGenerator::cmNinjaUtilityTargetGenerator(
|
cmNinjaUtilityTargetGenerator::cmNinjaUtilityTargetGenerator(
|
||||||
cmGeneratorTarget* target)
|
cmGeneratorTarget* target)
|
||||||
|
|
|
@ -13,11 +13,11 @@
|
||||||
#ifndef cmNinjaUtilityTargetGenerator_h
|
#ifndef cmNinjaUtilityTargetGenerator_h
|
||||||
#define cmNinjaUtilityTargetGenerator_h
|
#define cmNinjaUtilityTargetGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include "cmNinjaTargetGenerator.h"
|
#include "cmNinjaTargetGenerator.h"
|
||||||
|
|
||||||
#include "cmNinjaTypes.h"
|
class cmGeneratorTarget;
|
||||||
|
|
||||||
class cmSourceFile;
|
|
||||||
|
|
||||||
class cmNinjaUtilityTargetGenerator : public cmNinjaTargetGenerator
|
class cmNinjaUtilityTargetGenerator : public cmNinjaTargetGenerator
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,14 +2,18 @@
|
||||||
|
|
||||||
#include "cmAlgorithms.h"
|
#include "cmAlgorithms.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
|
#include "cmState.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
#include "cmVersion.h"
|
#include "cmVersion.h"
|
||||||
#include "cmVersionMacros.h"
|
|
||||||
#include "cmake.h"
|
#include "cmake.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <cmConfigure.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <map>
|
#include <sstream>
|
||||||
#include <queue>
|
#include <stdio.h>
|
||||||
#include <set>
|
#include <string.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
static bool stringToId(const char* input, cmPolicies::PolicyID& pid)
|
static bool stringToId(const char* input, cmPolicies::PolicyID& pid)
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,12 +12,12 @@
|
||||||
#ifndef cmPolicies_h
|
#ifndef cmPolicies_h
|
||||||
#define cmPolicies_h
|
#define cmPolicies_h
|
||||||
|
|
||||||
#include "cmStandardIncludes.h"
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
#include <bitset>
|
#include <bitset>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class cmMakefile;
|
class cmMakefile;
|
||||||
class cmPolicy;
|
|
||||||
|
|
||||||
#define CM_FOR_EACH_POLICY_TABLE(POLICY, SELECT) \
|
#define CM_FOR_EACH_POLICY_TABLE(POLICY, SELECT) \
|
||||||
SELECT(POLICY, CMP0000, \
|
SELECT(POLICY, CMP0000, \
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
#include "cmProcessTools.h"
|
#include "cmProcessTools.h"
|
||||||
|
|
||||||
#include <cmsys/Process.h>
|
#include <cmsys/Process.h>
|
||||||
|
#include <ostream>
|
||||||
|
|
||||||
void cmProcessTools::RunProcess(struct cmsysProcess_s* cp, OutputParser* out,
|
void cmProcessTools::RunProcess(struct cmsysProcess_s* cp, OutputParser* out,
|
||||||
OutputParser* err)
|
OutputParser* err)
|
||||||
|
|
|
@ -12,7 +12,11 @@
|
||||||
#ifndef cmProcessTools_h
|
#ifndef cmProcessTools_h
|
||||||
#define cmProcessTools_h
|
#define cmProcessTools_h
|
||||||
|
|
||||||
#include "cmStandardIncludes.h"
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <string.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
/** \class cmProcessTools
|
/** \class cmProcessTools
|
||||||
* \brief Helper classes for process output parsing
|
* \brief Helper classes for process output parsing
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmProperty.h"
|
#include "cmProperty.h"
|
||||||
|
|
||||||
#include "cmSystemTools.h"
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
void cmProperty::Set(const char* value)
|
void cmProperty::Set(const char* value)
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,9 @@
|
||||||
#ifndef cmProperty_h
|
#ifndef cmProperty_h
|
||||||
#define cmProperty_h
|
#define cmProperty_h
|
||||||
|
|
||||||
#include "cmStandardIncludes.h"
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class cmProperty
|
class cmProperty
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmPropertyDefinition.h"
|
#include "cmPropertyDefinition.h"
|
||||||
|
|
||||||
#include "cmSystemTools.h"
|
|
||||||
|
|
||||||
void cmPropertyDefinition::DefineProperty(const std::string& name,
|
void cmPropertyDefinition::DefineProperty(const std::string& name,
|
||||||
cmProperty::ScopeType scope,
|
cmProperty::ScopeType scope,
|
||||||
const char* shortDescription,
|
const char* shortDescription,
|
||||||
|
|
|
@ -12,8 +12,12 @@
|
||||||
#ifndef cmPropertyDefinition_h
|
#ifndef cmPropertyDefinition_h
|
||||||
#define cmPropertyDefinition_h
|
#define cmPropertyDefinition_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
#include "cmProperty.h"
|
#include "cmProperty.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
/** \class cmPropertyDefinition
|
/** \class cmPropertyDefinition
|
||||||
* \brief Property meta-information
|
* \brief Property meta-information
|
||||||
*
|
*
|
||||||
|
|
|
@ -11,8 +11,7 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmPropertyDefinitionMap.h"
|
#include "cmPropertyDefinitionMap.h"
|
||||||
|
|
||||||
#include "cmDocumentationSection.h"
|
#include <utility>
|
||||||
#include "cmSystemTools.h"
|
|
||||||
|
|
||||||
void cmPropertyDefinitionMap::DefineProperty(const std::string& name,
|
void cmPropertyDefinitionMap::DefineProperty(const std::string& name,
|
||||||
cmProperty::ScopeType scope,
|
cmProperty::ScopeType scope,
|
||||||
|
|
|
@ -12,9 +12,13 @@
|
||||||
#ifndef cmPropertyDefinitionMap_h
|
#ifndef cmPropertyDefinitionMap_h
|
||||||
#define cmPropertyDefinitionMap_h
|
#define cmPropertyDefinitionMap_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
|
#include "cmProperty.h"
|
||||||
#include "cmPropertyDefinition.h"
|
#include "cmPropertyDefinition.h"
|
||||||
|
|
||||||
class cmDocumentationSection;
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class cmPropertyDefinitionMap
|
class cmPropertyDefinitionMap
|
||||||
: public std::map<std::string, cmPropertyDefinition>
|
: public std::map<std::string, cmPropertyDefinition>
|
||||||
|
|
|
@ -11,12 +11,10 @@
|
||||||
============================================================================*/
|
============================================================================*/
|
||||||
#include "cmPropertyMap.h"
|
#include "cmPropertyMap.h"
|
||||||
|
|
||||||
#include "cmState.h"
|
|
||||||
#include "cmSystemTools.h"
|
|
||||||
#include "cmake.h"
|
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
cmProperty* cmPropertyMap::GetOrCreateProperty(const std::string& name)
|
cmProperty* cmPropertyMap::GetOrCreateProperty(const std::string& name)
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,8 +12,14 @@
|
||||||
#ifndef cmPropertyMap_h
|
#ifndef cmPropertyMap_h
|
||||||
#define cmPropertyMap_h
|
#define cmPropertyMap_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
#include "cmProperty.h"
|
#include "cmProperty.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class cmPropertyMap : public std::map<std::string, cmProperty>
|
class cmPropertyMap : public std::map<std::string, cmProperty>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue