From 5afac50f6852332698fbc9be4209f1c90a011d66 Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Tue, 11 Apr 2017 21:42:35 +0200 Subject: cmConfigure: Ensure separate include block in headers Make sure that `#include ` is followed by an empty line in header files. This is necessary to make sure that changing <> to "" does not affect the include ordering of clang-format. Automate with: git grep -l '#include ' | grep -v '.cxx$' \ | xargs sed -i '/#include / { N; N; s/\n\{1,2\}/\n\n/ }' --- Source/CPack/cmCPackBundleGenerator.h | 1 + Source/CPack/cmCPackDragNDropGenerator.h | 1 + Source/CPack/cmCPackOSXX11Generator.h | 1 + Source/CPack/cmCPackPKGGenerator.h | 1 + Source/CPack/cmCPackProductBuildGenerator.h | 1 + Source/cmAddCompileOptionsCommand.h | 1 + Source/cmAddCustomCommandCommand.h | 1 + Source/cmAddCustomTargetCommand.h | 1 + Source/cmAddDefinitionsCommand.h | 1 + Source/cmAddDependenciesCommand.h | 1 + Source/cmAddExecutableCommand.h | 1 + Source/cmAddLibraryCommand.h | 1 + Source/cmAddSubDirectoryCommand.h | 1 + Source/cmAddTestCommand.h | 1 + Source/cmAuxSourceDirectoryCommand.h | 1 + Source/cmBreakCommand.h | 1 + Source/cmBuildCommand.h | 1 + Source/cmBuildNameCommand.h | 1 + Source/cmCMakeHostSystemInformationCommand.h | 1 + Source/cmCMakeMinimumRequired.h | 1 + Source/cmCMakePolicyCommand.h | 1 + Source/cmCommand.h | 1 + Source/cmCommonTargetGenerator.h | 1 + Source/cmConfigureFileCommand.h | 1 + Source/cmContinueCommand.h | 1 + Source/cmDefinePropertyCommand.h | 1 + Source/cmDependsFortran.h | 1 + Source/cmDisallowedCommand.h | 1 + Source/cmEnableLanguageCommand.h | 1 + Source/cmEnableTestingCommand.h | 1 + Source/cmExecProgramCommand.h | 1 + Source/cmExecuteProcessCommand.h | 1 + Source/cmExportCommand.h | 1 + Source/cmExportLibraryDependenciesCommand.h | 1 + Source/cmFLTKWrapUICommand.h | 1 + Source/cmFileCommand.h | 1 + Source/cmFindFileCommand.h | 1 + Source/cmFindLibraryCommand.h | 1 + Source/cmFindPackageCommand.h | 1 + Source/cmFindPathCommand.h | 1 + Source/cmFindProgramCommand.h | 1 + Source/cmForEachCommand.h | 1 + Source/cmFunctionCommand.h | 1 + Source/cmGetCMakePropertyCommand.h | 1 + Source/cmGetDirectoryPropertyCommand.h | 1 + Source/cmGetFilenameComponentCommand.h | 1 + Source/cmGetPropertyCommand.h | 1 + Source/cmGetSourceFilePropertyCommand.h | 1 + Source/cmGetTargetPropertyCommand.h | 1 + Source/cmGetTestPropertyCommand.h | 1 + Source/cmGlobalXCodeGenerator.h | 1 + Source/cmIfCommand.h | 1 + Source/cmIncludeCommand.h | 1 + Source/cmIncludeDirectoryCommand.h | 1 + Source/cmIncludeExternalMSProjectCommand.h | 1 + Source/cmIncludeRegularExpressionCommand.h | 1 + Source/cmInstallCommand.h | 1 + Source/cmInstallDirectoryGenerator.h | 1 + Source/cmInstallFilesCommand.h | 1 + Source/cmInstallProgramsCommand.h | 1 + Source/cmInstallTargetsCommand.h | 1 + Source/cmLinkDirectoriesCommand.h | 1 + Source/cmLinkLibrariesCommand.h | 1 + Source/cmListCommand.h | 1 + Source/cmLoadCacheCommand.h | 1 + Source/cmLoadCommandCommand.h | 1 + Source/cmLocalXCodeGenerator.h | 1 + Source/cmMacroCommand.h | 1 + Source/cmMakeDirectoryCommand.h | 1 + Source/cmMarkAsAdvancedCommand.h | 1 + Source/cmMathCommand.h | 1 + Source/cmMessageCommand.h | 1 + Source/cmOptionCommand.h | 1 + Source/cmOutputRequiredFilesCommand.h | 1 + Source/cmParseArgumentsCommand.h | 1 + Source/cmProjectCommand.h | 1 + Source/cmQTWrapCPPCommand.h | 1 + Source/cmQTWrapUICommand.h | 1 + Source/cmQtAutoGeneratorCommon.h | 1 + Source/cmQtAutoGenerators.h | 1 + Source/cmRemoveCommand.h | 1 + Source/cmRemoveDefinitionsCommand.h | 1 + Source/cmReturnCommand.h | 1 + Source/cmSeparateArgumentsCommand.h | 1 + Source/cmSetCommand.h | 1 + Source/cmSetDirectoryPropertiesCommand.h | 1 + Source/cmSetPropertyCommand.h | 1 + Source/cmSetSourceFilesPropertiesCommand.h | 1 + Source/cmSetTargetPropertiesCommand.h | 1 + Source/cmSetTestsPropertiesCommand.h | 1 + Source/cmSiteNameCommand.h | 1 + Source/cmSourceGroupCommand.h | 1 + Source/cmStringCommand.h | 1 + Source/cmSubdirCommand.h | 1 + Source/cmSubdirDependsCommand.h | 1 + Source/cmTargetCompileDefinitionsCommand.h | 1 + Source/cmTargetCompileFeaturesCommand.h | 1 + Source/cmTargetCompileOptionsCommand.h | 1 + Source/cmTargetIncludeDirectoriesCommand.h | 1 + Source/cmTargetLinkLibrariesCommand.h | 1 + Source/cmTargetSourcesCommand.h | 1 + Source/cmTryCompileCommand.h | 1 + Source/cmTryRunCommand.h | 1 + Source/cmUnexpectedCommand.h | 1 + Source/cmUnsetCommand.h | 1 + Source/cmUseMangledMesaCommand.h | 1 + Source/cmUtilitySourceCommand.h | 1 + Source/cmVariableRequiresCommand.h | 1 + Source/cmVariableWatchCommand.h | 1 + Source/cmWhileCommand.h | 1 + Source/cmWriteFileCommand.h | 1 + 111 files changed, 111 insertions(+) diff --git a/Source/CPack/cmCPackBundleGenerator.h b/Source/CPack/cmCPackBundleGenerator.h index c9200c1..9794f27 100644 --- a/Source/CPack/cmCPackBundleGenerator.h +++ b/Source/CPack/cmCPackBundleGenerator.h @@ -4,6 +4,7 @@ #define cmCPackBundleGenerator_h #include + #include #include "cmCPackDragNDropGenerator.h" diff --git a/Source/CPack/cmCPackDragNDropGenerator.h b/Source/CPack/cmCPackDragNDropGenerator.h index 876eab7..2304d9c 100644 --- a/Source/CPack/cmCPackDragNDropGenerator.h +++ b/Source/CPack/cmCPackDragNDropGenerator.h @@ -4,6 +4,7 @@ #define cmCPackDragNDropGenerator_h #include + #include #include #include diff --git a/Source/CPack/cmCPackOSXX11Generator.h b/Source/CPack/cmCPackOSXX11Generator.h index 1918e21..6bbf7a4 100644 --- a/Source/CPack/cmCPackOSXX11Generator.h +++ b/Source/CPack/cmCPackOSXX11Generator.h @@ -4,6 +4,7 @@ #define cmCPackOSXX11Generator_h #include + #include #include "cmCPackGenerator.h" diff --git a/Source/CPack/cmCPackPKGGenerator.h b/Source/CPack/cmCPackPKGGenerator.h index 1e96a62..940a38e 100644 --- a/Source/CPack/cmCPackPKGGenerator.h +++ b/Source/CPack/cmCPackPKGGenerator.h @@ -4,6 +4,7 @@ #define cmCPackPKGGenerator_h #include + #include #include #include diff --git a/Source/CPack/cmCPackProductBuildGenerator.h b/Source/CPack/cmCPackProductBuildGenerator.h index b6da470..9f22cfe 100644 --- a/Source/CPack/cmCPackProductBuildGenerator.h +++ b/Source/CPack/cmCPackProductBuildGenerator.h @@ -4,6 +4,7 @@ #define cmCPackProductBuildGenerator_h #include + #include #include "cmCPackGenerator.h" diff --git a/Source/cmAddCompileOptionsCommand.h b/Source/cmAddCompileOptionsCommand.h index 71009b4..f94c741 100644 --- a/Source/cmAddCompileOptionsCommand.h +++ b/Source/cmAddCompileOptionsCommand.h @@ -4,6 +4,7 @@ #define cmAddCompileOptionsCommand_h #include + #include #include diff --git a/Source/cmAddCustomCommandCommand.h b/Source/cmAddCustomCommandCommand.h index ea92163..aeb1344 100644 --- a/Source/cmAddCustomCommandCommand.h +++ b/Source/cmAddCustomCommandCommand.h @@ -4,6 +4,7 @@ #define cmAddCustomCommandCommand_h #include + #include #include diff --git a/Source/cmAddCustomTargetCommand.h b/Source/cmAddCustomTargetCommand.h index b679247..8ff790d 100644 --- a/Source/cmAddCustomTargetCommand.h +++ b/Source/cmAddCustomTargetCommand.h @@ -4,6 +4,7 @@ #define cmAddCustomTargetCommand_h #include + #include #include diff --git a/Source/cmAddDefinitionsCommand.h b/Source/cmAddDefinitionsCommand.h index 735f8cc..09781d4 100644 --- a/Source/cmAddDefinitionsCommand.h +++ b/Source/cmAddDefinitionsCommand.h @@ -4,6 +4,7 @@ #define cmAddDefinitionsCommand_h #include + #include #include diff --git a/Source/cmAddDependenciesCommand.h b/Source/cmAddDependenciesCommand.h index 8be546c..e693f5d 100644 --- a/Source/cmAddDependenciesCommand.h +++ b/Source/cmAddDependenciesCommand.h @@ -4,6 +4,7 @@ #define cmDependenciessCommand_h #include + #include #include diff --git a/Source/cmAddExecutableCommand.h b/Source/cmAddExecutableCommand.h index 62583d8..0760bba 100644 --- a/Source/cmAddExecutableCommand.h +++ b/Source/cmAddExecutableCommand.h @@ -4,6 +4,7 @@ #define cmExecutablesCommand_h #include + #include #include diff --git a/Source/cmAddLibraryCommand.h b/Source/cmAddLibraryCommand.h index c23b299..dceea21 100644 --- a/Source/cmAddLibraryCommand.h +++ b/Source/cmAddLibraryCommand.h @@ -4,6 +4,7 @@ #define cmLibrarysCommand_h #include + #include #include diff --git a/Source/cmAddSubDirectoryCommand.h b/Source/cmAddSubDirectoryCommand.h index 85305e6..5da62a9 100644 --- a/Source/cmAddSubDirectoryCommand.h +++ b/Source/cmAddSubDirectoryCommand.h @@ -4,6 +4,7 @@ #define cmAddSubDirectoryCommand_h #include + #include #include diff --git a/Source/cmAddTestCommand.h b/Source/cmAddTestCommand.h index 07eff68..97de3b2 100644 --- a/Source/cmAddTestCommand.h +++ b/Source/cmAddTestCommand.h @@ -4,6 +4,7 @@ #define cmAddTestCommand_h #include + #include #include diff --git a/Source/cmAuxSourceDirectoryCommand.h b/Source/cmAuxSourceDirectoryCommand.h index d99bf7b..36f291e 100644 --- a/Source/cmAuxSourceDirectoryCommand.h +++ b/Source/cmAuxSourceDirectoryCommand.h @@ -4,6 +4,7 @@ #define cmAuxSourceDirectoryCommand_h #include + #include #include diff --git a/Source/cmBreakCommand.h b/Source/cmBreakCommand.h index 5113e18..6d5cf02 100644 --- a/Source/cmBreakCommand.h +++ b/Source/cmBreakCommand.h @@ -4,6 +4,7 @@ #define cmBreakCommand_h #include + #include #include diff --git a/Source/cmBuildCommand.h b/Source/cmBuildCommand.h index 62f1fd3..420a094 100644 --- a/Source/cmBuildCommand.h +++ b/Source/cmBuildCommand.h @@ -4,6 +4,7 @@ #define cmBuildCommand_h #include + #include #include diff --git a/Source/cmBuildNameCommand.h b/Source/cmBuildNameCommand.h index 1e1f4b5..43db4e8 100644 --- a/Source/cmBuildNameCommand.h +++ b/Source/cmBuildNameCommand.h @@ -4,6 +4,7 @@ #define cmBuildNameCommand_h #include + #include #include diff --git a/Source/cmCMakeHostSystemInformationCommand.h b/Source/cmCMakeHostSystemInformationCommand.h index 22f3d54..4d40e39 100644 --- a/Source/cmCMakeHostSystemInformationCommand.h +++ b/Source/cmCMakeHostSystemInformationCommand.h @@ -4,6 +4,7 @@ #define cmCMakeHostSystemInformationCommand_h #include + #include #include #include diff --git a/Source/cmCMakeMinimumRequired.h b/Source/cmCMakeMinimumRequired.h index 08a5c38..d6e0f68 100644 --- a/Source/cmCMakeMinimumRequired.h +++ b/Source/cmCMakeMinimumRequired.h @@ -4,6 +4,7 @@ #define cmCMakeMinimumRequired_h #include + #include #include diff --git a/Source/cmCMakePolicyCommand.h b/Source/cmCMakePolicyCommand.h index 409fc59..1394aa3 100644 --- a/Source/cmCMakePolicyCommand.h +++ b/Source/cmCMakePolicyCommand.h @@ -4,6 +4,7 @@ #define cmCMakePolicyCommand_h #include + #include #include diff --git a/Source/cmCommand.h b/Source/cmCommand.h index 9107d85..c8c212c 100644 --- a/Source/cmCommand.h +++ b/Source/cmCommand.h @@ -4,6 +4,7 @@ #define cmCommand_h #include + #include #include diff --git a/Source/cmCommonTargetGenerator.h b/Source/cmCommonTargetGenerator.h index 425ff91..6b6c9b8 100644 --- a/Source/cmCommonTargetGenerator.h +++ b/Source/cmCommonTargetGenerator.h @@ -4,6 +4,7 @@ #define cmCommonTargetGenerator_h #include // IWYU pragma: keep + #include #include #include diff --git a/Source/cmConfigureFileCommand.h b/Source/cmConfigureFileCommand.h index e558b85..38ce46d 100644 --- a/Source/cmConfigureFileCommand.h +++ b/Source/cmConfigureFileCommand.h @@ -4,6 +4,7 @@ #define cmConfigureFileCommand_h #include + #include #include diff --git a/Source/cmContinueCommand.h b/Source/cmContinueCommand.h index c5b8919..86bfea4 100644 --- a/Source/cmContinueCommand.h +++ b/Source/cmContinueCommand.h @@ -4,6 +4,7 @@ #define cmContinueCommand_h #include + #include #include diff --git a/Source/cmDefinePropertyCommand.h b/Source/cmDefinePropertyCommand.h index 02e5b88..e29918b 100644 --- a/Source/cmDefinePropertyCommand.h +++ b/Source/cmDefinePropertyCommand.h @@ -4,6 +4,7 @@ #define cmDefinesPropertyCommand_h #include + #include #include diff --git a/Source/cmDependsFortran.h b/Source/cmDependsFortran.h index 90b82d4..2c1a977 100644 --- a/Source/cmDependsFortran.h +++ b/Source/cmDependsFortran.h @@ -4,6 +4,7 @@ #define cmFortran_h #include + #include #include #include diff --git a/Source/cmDisallowedCommand.h b/Source/cmDisallowedCommand.h index 00b0183..21ea7a4 100644 --- a/Source/cmDisallowedCommand.h +++ b/Source/cmDisallowedCommand.h @@ -4,6 +4,7 @@ #define cmDisallowedCommand_h #include + #include #include diff --git a/Source/cmEnableLanguageCommand.h b/Source/cmEnableLanguageCommand.h index bafb79e..d836c18 100644 --- a/Source/cmEnableLanguageCommand.h +++ b/Source/cmEnableLanguageCommand.h @@ -4,6 +4,7 @@ #define cmEnableLanguageCommand_h #include + #include #include diff --git a/Source/cmEnableTestingCommand.h b/Source/cmEnableTestingCommand.h index 67cd237..f7969fc 100644 --- a/Source/cmEnableTestingCommand.h +++ b/Source/cmEnableTestingCommand.h @@ -4,6 +4,7 @@ #define cmEnableTestingCommand_h #include + #include #include diff --git a/Source/cmExecProgramCommand.h b/Source/cmExecProgramCommand.h index 58e948e..90f9fd7 100644 --- a/Source/cmExecProgramCommand.h +++ b/Source/cmExecProgramCommand.h @@ -4,6 +4,7 @@ #define cmExecProgramCommand_h #include + #include #include diff --git a/Source/cmExecuteProcessCommand.h b/Source/cmExecuteProcessCommand.h index 9ce4338..1ed1419 100644 --- a/Source/cmExecuteProcessCommand.h +++ b/Source/cmExecuteProcessCommand.h @@ -4,6 +4,7 @@ #define cmExecuteProcessCommand_h #include + #include #include diff --git a/Source/cmExportCommand.h b/Source/cmExportCommand.h index a0224d0..80839bc 100644 --- a/Source/cmExportCommand.h +++ b/Source/cmExportCommand.h @@ -4,6 +4,7 @@ #define cmExportCommand_h #include + #include #include diff --git a/Source/cmExportLibraryDependenciesCommand.h b/Source/cmExportLibraryDependenciesCommand.h index be53349..41f22f4 100644 --- a/Source/cmExportLibraryDependenciesCommand.h +++ b/Source/cmExportLibraryDependenciesCommand.h @@ -4,6 +4,7 @@ #define cmExportLibraryDependenciesCommand_h #include + #include #include diff --git a/Source/cmFLTKWrapUICommand.h b/Source/cmFLTKWrapUICommand.h index 835f0a7..c831153 100644 --- a/Source/cmFLTKWrapUICommand.h +++ b/Source/cmFLTKWrapUICommand.h @@ -4,6 +4,7 @@ #define cmFLTKWrapUICommand_h #include + #include #include diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h index 2d82a23..5a01d0d 100644 --- a/Source/cmFileCommand.h +++ b/Source/cmFileCommand.h @@ -4,6 +4,7 @@ #define cmFileCommand_h #include + #include #include diff --git a/Source/cmFindFileCommand.h b/Source/cmFindFileCommand.h index 5c94ebf..364ef95 100644 --- a/Source/cmFindFileCommand.h +++ b/Source/cmFindFileCommand.h @@ -4,6 +4,7 @@ #define cmFindFileCommand_h #include + #include #include "cmFindPathCommand.h" diff --git a/Source/cmFindLibraryCommand.h b/Source/cmFindLibraryCommand.h index aeff629..aa184cf 100644 --- a/Source/cmFindLibraryCommand.h +++ b/Source/cmFindLibraryCommand.h @@ -4,6 +4,7 @@ #define cmFindLibraryCommand_h #include + #include #include diff --git a/Source/cmFindPackageCommand.h b/Source/cmFindPackageCommand.h index 61a8dd6..18e128a 100644 --- a/Source/cmFindPackageCommand.h +++ b/Source/cmFindPackageCommand.h @@ -4,6 +4,7 @@ #define cmFindPackageCommand_h #include + #include #include #include diff --git a/Source/cmFindPathCommand.h b/Source/cmFindPathCommand.h index edeeb3a..bc0ba7c 100644 --- a/Source/cmFindPathCommand.h +++ b/Source/cmFindPathCommand.h @@ -4,6 +4,7 @@ #define cmFindPathCommand_h #include + #include #include diff --git a/Source/cmFindProgramCommand.h b/Source/cmFindProgramCommand.h index dc17803..bb60442 100644 --- a/Source/cmFindProgramCommand.h +++ b/Source/cmFindProgramCommand.h @@ -4,6 +4,7 @@ #define cmFindProgramCommand_h #include + #include #include diff --git a/Source/cmForEachCommand.h b/Source/cmForEachCommand.h index 93c4676..aea9d94 100644 --- a/Source/cmForEachCommand.h +++ b/Source/cmForEachCommand.h @@ -4,6 +4,7 @@ #define cmForEachCommand_h #include + #include #include diff --git a/Source/cmFunctionCommand.h b/Source/cmFunctionCommand.h index afea6f9..39b8867 100644 --- a/Source/cmFunctionCommand.h +++ b/Source/cmFunctionCommand.h @@ -4,6 +4,7 @@ #define cmFunctionCommand_h #include + #include #include diff --git a/Source/cmGetCMakePropertyCommand.h b/Source/cmGetCMakePropertyCommand.h index 41a51a4..9e0f9bc 100644 --- a/Source/cmGetCMakePropertyCommand.h +++ b/Source/cmGetCMakePropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetCMakePropertyCommand_h #include + #include #include diff --git a/Source/cmGetDirectoryPropertyCommand.h b/Source/cmGetDirectoryPropertyCommand.h index 1ae3125..2aaafa9 100644 --- a/Source/cmGetDirectoryPropertyCommand.h +++ b/Source/cmGetDirectoryPropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetDirectoryPropertyCommand_h #include + #include #include diff --git a/Source/cmGetFilenameComponentCommand.h b/Source/cmGetFilenameComponentCommand.h index c0ad903..9c5c616 100644 --- a/Source/cmGetFilenameComponentCommand.h +++ b/Source/cmGetFilenameComponentCommand.h @@ -4,6 +4,7 @@ #define cmGetFilenameComponentCommand_h #include + #include #include diff --git a/Source/cmGetPropertyCommand.h b/Source/cmGetPropertyCommand.h index f9a33ac..555e49b 100644 --- a/Source/cmGetPropertyCommand.h +++ b/Source/cmGetPropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetPropertyCommand_h #include + #include #include diff --git a/Source/cmGetSourceFilePropertyCommand.h b/Source/cmGetSourceFilePropertyCommand.h index 0f71851..0a8de30 100644 --- a/Source/cmGetSourceFilePropertyCommand.h +++ b/Source/cmGetSourceFilePropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetSourceFilePropertyCommand_h #include + #include #include diff --git a/Source/cmGetTargetPropertyCommand.h b/Source/cmGetTargetPropertyCommand.h index 32fe803..b88bf93 100644 --- a/Source/cmGetTargetPropertyCommand.h +++ b/Source/cmGetTargetPropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetTargetPropertyCommand_h #include + #include #include diff --git a/Source/cmGetTestPropertyCommand.h b/Source/cmGetTestPropertyCommand.h index 0491cc8..b0e68c3 100644 --- a/Source/cmGetTestPropertyCommand.h +++ b/Source/cmGetTestPropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetTestPropertyCommand_h #include + #include #include diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h index 172e414..9e74a22 100644 --- a/Source/cmGlobalXCodeGenerator.h +++ b/Source/cmGlobalXCodeGenerator.h @@ -4,6 +4,7 @@ #define cmGlobalXCodeGenerator_h #include + #include #include #include diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index f81db67..78db4df 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -4,6 +4,7 @@ #define cmIfCommand_h #include + #include #include diff --git a/Source/cmIncludeCommand.h b/Source/cmIncludeCommand.h index 78edd43..55f1e61 100644 --- a/Source/cmIncludeCommand.h +++ b/Source/cmIncludeCommand.h @@ -4,6 +4,7 @@ #define cmIncludeCommand_h #include + #include #include diff --git a/Source/cmIncludeDirectoryCommand.h b/Source/cmIncludeDirectoryCommand.h index 287b5d3..7241df5 100644 --- a/Source/cmIncludeDirectoryCommand.h +++ b/Source/cmIncludeDirectoryCommand.h @@ -4,6 +4,7 @@ #define cmIncludeDirectoryCommand_h #include + #include #include diff --git a/Source/cmIncludeExternalMSProjectCommand.h b/Source/cmIncludeExternalMSProjectCommand.h index 9fcf467..ba1a8bf 100644 --- a/Source/cmIncludeExternalMSProjectCommand.h +++ b/Source/cmIncludeExternalMSProjectCommand.h @@ -4,6 +4,7 @@ #define cmIncludeExternalMSProjectCommand_h #include + #include #include diff --git a/Source/cmIncludeRegularExpressionCommand.h b/Source/cmIncludeRegularExpressionCommand.h index c68d9f2..a45d177 100644 --- a/Source/cmIncludeRegularExpressionCommand.h +++ b/Source/cmIncludeRegularExpressionCommand.h @@ -4,6 +4,7 @@ #define cmIncludeRegularExpressionCommand_h #include + #include #include diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index 187a6ce..4a39cb7 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -4,6 +4,7 @@ #define cmInstallCommand_h #include + #include #include diff --git a/Source/cmInstallDirectoryGenerator.h b/Source/cmInstallDirectoryGenerator.h index 0518092..e6fae60 100644 --- a/Source/cmInstallDirectoryGenerator.h +++ b/Source/cmInstallDirectoryGenerator.h @@ -7,6 +7,7 @@ #include "cmScriptGenerator.h" #include + #include #include #include diff --git a/Source/cmInstallFilesCommand.h b/Source/cmInstallFilesCommand.h index c3e2919..c1ce6fd 100644 --- a/Source/cmInstallFilesCommand.h +++ b/Source/cmInstallFilesCommand.h @@ -4,6 +4,7 @@ #define cmInstallFilesCommand_h #include + #include #include diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h index ca07a2f..6895dd7 100644 --- a/Source/cmInstallProgramsCommand.h +++ b/Source/cmInstallProgramsCommand.h @@ -4,6 +4,7 @@ #define cmInstallProgramsCommand_h #include + #include #include diff --git a/Source/cmInstallTargetsCommand.h b/Source/cmInstallTargetsCommand.h index 150397d..7e8086c 100644 --- a/Source/cmInstallTargetsCommand.h +++ b/Source/cmInstallTargetsCommand.h @@ -4,6 +4,7 @@ #define cmInstallTargetsCommand_h #include + #include #include diff --git a/Source/cmLinkDirectoriesCommand.h b/Source/cmLinkDirectoriesCommand.h index 387b3b9..6552c7a 100644 --- a/Source/cmLinkDirectoriesCommand.h +++ b/Source/cmLinkDirectoriesCommand.h @@ -4,6 +4,7 @@ #define cmLinkDirectoriesCommand_h #include + #include #include diff --git a/Source/cmLinkLibrariesCommand.h b/Source/cmLinkLibrariesCommand.h index 66d7ec4..ee6be32 100644 --- a/Source/cmLinkLibrariesCommand.h +++ b/Source/cmLinkLibrariesCommand.h @@ -4,6 +4,7 @@ #define cmLinkLibrariesCommand_h #include + #include #include diff --git a/Source/cmListCommand.h b/Source/cmListCommand.h index e7413ca..a002643 100644 --- a/Source/cmListCommand.h +++ b/Source/cmListCommand.h @@ -4,6 +4,7 @@ #define cmListCommand_h #include + #include #include diff --git a/Source/cmLoadCacheCommand.h b/Source/cmLoadCacheCommand.h index 539c74e..fc2b8b0 100644 --- a/Source/cmLoadCacheCommand.h +++ b/Source/cmLoadCacheCommand.h @@ -4,6 +4,7 @@ #define cmLoadCacheCommand_h #include + #include #include #include diff --git a/Source/cmLoadCommandCommand.h b/Source/cmLoadCommandCommand.h index d16dfea..60b61f8 100644 --- a/Source/cmLoadCommandCommand.h +++ b/Source/cmLoadCommandCommand.h @@ -4,6 +4,7 @@ #define cmLoadCommandCommand_h #include + #include #include diff --git a/Source/cmLocalXCodeGenerator.h b/Source/cmLocalXCodeGenerator.h index b4a8c6c..bd8e9e1 100644 --- a/Source/cmLocalXCodeGenerator.h +++ b/Source/cmLocalXCodeGenerator.h @@ -4,6 +4,7 @@ #define cmLocalXCodeGenerator_h #include // IWYU pragma: keep + #include #include diff --git a/Source/cmMacroCommand.h b/Source/cmMacroCommand.h index acb4233..c5c1f46 100644 --- a/Source/cmMacroCommand.h +++ b/Source/cmMacroCommand.h @@ -4,6 +4,7 @@ #define cmMacroCommand_h #include + #include #include diff --git a/Source/cmMakeDirectoryCommand.h b/Source/cmMakeDirectoryCommand.h index d9cce6f..05f5b47 100644 --- a/Source/cmMakeDirectoryCommand.h +++ b/Source/cmMakeDirectoryCommand.h @@ -4,6 +4,7 @@ #define cmMakeDirectoryCommand_h #include + #include #include diff --git a/Source/cmMarkAsAdvancedCommand.h b/Source/cmMarkAsAdvancedCommand.h index 26caa66..d7d6fe9 100644 --- a/Source/cmMarkAsAdvancedCommand.h +++ b/Source/cmMarkAsAdvancedCommand.h @@ -4,6 +4,7 @@ #define cmMarkAsAdvancedCommand_h #include + #include #include diff --git a/Source/cmMathCommand.h b/Source/cmMathCommand.h index 9b49b21..7a8e30a 100644 --- a/Source/cmMathCommand.h +++ b/Source/cmMathCommand.h @@ -4,6 +4,7 @@ #define cmMathCommand_h #include + #include #include diff --git a/Source/cmMessageCommand.h b/Source/cmMessageCommand.h index a565635..c816289 100644 --- a/Source/cmMessageCommand.h +++ b/Source/cmMessageCommand.h @@ -4,6 +4,7 @@ #define cmMessageCommand_h #include + #include #include diff --git a/Source/cmOptionCommand.h b/Source/cmOptionCommand.h index 09567ff..db5e4f3 100644 --- a/Source/cmOptionCommand.h +++ b/Source/cmOptionCommand.h @@ -4,6 +4,7 @@ #define cmOptionCommand_h #include + #include #include diff --git a/Source/cmOutputRequiredFilesCommand.h b/Source/cmOutputRequiredFilesCommand.h index c4ce680..eced181 100644 --- a/Source/cmOutputRequiredFilesCommand.h +++ b/Source/cmOutputRequiredFilesCommand.h @@ -4,6 +4,7 @@ #define cmOutputRequiredFilesCommand_h #include + #include #include #include diff --git a/Source/cmParseArgumentsCommand.h b/Source/cmParseArgumentsCommand.h index 079eadb..3b6c424 100644 --- a/Source/cmParseArgumentsCommand.h +++ b/Source/cmParseArgumentsCommand.h @@ -4,6 +4,7 @@ #define cmParseArgumentsCommand_h #include + #include #include diff --git a/Source/cmProjectCommand.h b/Source/cmProjectCommand.h index cd92176..5a718bc 100644 --- a/Source/cmProjectCommand.h +++ b/Source/cmProjectCommand.h @@ -4,6 +4,7 @@ #define cmProjectCommand_h #include + #include #include diff --git a/Source/cmQTWrapCPPCommand.h b/Source/cmQTWrapCPPCommand.h index 8eb5ff9..587b3ba 100644 --- a/Source/cmQTWrapCPPCommand.h +++ b/Source/cmQTWrapCPPCommand.h @@ -4,6 +4,7 @@ #define cmQTWrapCPPCommand_h #include + #include #include diff --git a/Source/cmQTWrapUICommand.h b/Source/cmQTWrapUICommand.h index 876ddd5..2980ee7 100644 --- a/Source/cmQTWrapUICommand.h +++ b/Source/cmQTWrapUICommand.h @@ -4,6 +4,7 @@ #define cmQTWrapUICommand_h #include + #include #include diff --git a/Source/cmQtAutoGeneratorCommon.h b/Source/cmQtAutoGeneratorCommon.h index b004005..2bb7e0d 100644 --- a/Source/cmQtAutoGeneratorCommon.h +++ b/Source/cmQtAutoGeneratorCommon.h @@ -4,6 +4,7 @@ #define cmQtAutoGeneratorCommon_h #include + #include #include diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index ee046de..35b2332 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -4,6 +4,7 @@ #define cmQtAutoGenerators_h #include // IWYU pragma: keep + #include #include diff --git a/Source/cmRemoveCommand.h b/Source/cmRemoveCommand.h index c935f28..834a90d 100644 --- a/Source/cmRemoveCommand.h +++ b/Source/cmRemoveCommand.h @@ -4,6 +4,7 @@ #define cmRemoveCommand_h #include + #include #include diff --git a/Source/cmRemoveDefinitionsCommand.h b/Source/cmRemoveDefinitionsCommand.h index 2bcc12d..4b05a6a 100644 --- a/Source/cmRemoveDefinitionsCommand.h +++ b/Source/cmRemoveDefinitionsCommand.h @@ -4,6 +4,7 @@ #define cmRemoveDefinitionsCommand_h #include + #include #include diff --git a/Source/cmReturnCommand.h b/Source/cmReturnCommand.h index 9496d67..cc7fb61 100644 --- a/Source/cmReturnCommand.h +++ b/Source/cmReturnCommand.h @@ -4,6 +4,7 @@ #define cmReturnCommand_h #include + #include #include diff --git a/Source/cmSeparateArgumentsCommand.h b/Source/cmSeparateArgumentsCommand.h index 1cbf56e..8b91a0c 100644 --- a/Source/cmSeparateArgumentsCommand.h +++ b/Source/cmSeparateArgumentsCommand.h @@ -4,6 +4,7 @@ #define cmSeparateArgumentsCommand_h #include + #include #include diff --git a/Source/cmSetCommand.h b/Source/cmSetCommand.h index 190092a..edf6493 100644 --- a/Source/cmSetCommand.h +++ b/Source/cmSetCommand.h @@ -4,6 +4,7 @@ #define cmSetCommand_h #include + #include #include diff --git a/Source/cmSetDirectoryPropertiesCommand.h b/Source/cmSetDirectoryPropertiesCommand.h index 854ad43..d8c6894 100644 --- a/Source/cmSetDirectoryPropertiesCommand.h +++ b/Source/cmSetDirectoryPropertiesCommand.h @@ -4,6 +4,7 @@ #define cmSetDirectoryPropertiesCommand_h #include + #include #include diff --git a/Source/cmSetPropertyCommand.h b/Source/cmSetPropertyCommand.h index fd7c922..a9804a3 100644 --- a/Source/cmSetPropertyCommand.h +++ b/Source/cmSetPropertyCommand.h @@ -4,6 +4,7 @@ #define cmSetsPropertiesCommand_h #include + #include #include #include diff --git a/Source/cmSetSourceFilesPropertiesCommand.h b/Source/cmSetSourceFilesPropertiesCommand.h index 8fa12c7..199bed2 100644 --- a/Source/cmSetSourceFilesPropertiesCommand.h +++ b/Source/cmSetSourceFilesPropertiesCommand.h @@ -4,6 +4,7 @@ #define cmSetSourceFilesPropertiesCommand_h #include + #include #include diff --git a/Source/cmSetTargetPropertiesCommand.h b/Source/cmSetTargetPropertiesCommand.h index c3c0d06..03e7c0b 100644 --- a/Source/cmSetTargetPropertiesCommand.h +++ b/Source/cmSetTargetPropertiesCommand.h @@ -4,6 +4,7 @@ #define cmSetTargetsPropertiesCommand_h #include + #include #include diff --git a/Source/cmSetTestsPropertiesCommand.h b/Source/cmSetTestsPropertiesCommand.h index 45aed79..2737ab5 100644 --- a/Source/cmSetTestsPropertiesCommand.h +++ b/Source/cmSetTestsPropertiesCommand.h @@ -4,6 +4,7 @@ #define cmSetTestsPropertiesCommand_h #include + #include #include diff --git a/Source/cmSiteNameCommand.h b/Source/cmSiteNameCommand.h index 01023b9..c91fc41 100644 --- a/Source/cmSiteNameCommand.h +++ b/Source/cmSiteNameCommand.h @@ -4,6 +4,7 @@ #define cmSiteNameCommand_h #include + #include #include diff --git a/Source/cmSourceGroupCommand.h b/Source/cmSourceGroupCommand.h index 5549096..ef2f71a 100644 --- a/Source/cmSourceGroupCommand.h +++ b/Source/cmSourceGroupCommand.h @@ -4,6 +4,7 @@ #define cmSourceGroupCommand_h #include + #include #include diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h index c63bc3f..6791321 100644 --- a/Source/cmStringCommand.h +++ b/Source/cmStringCommand.h @@ -4,6 +4,7 @@ #define cmStringCommand_h #include + #include #include diff --git a/Source/cmSubdirCommand.h b/Source/cmSubdirCommand.h index ce1f876..1782bff 100644 --- a/Source/cmSubdirCommand.h +++ b/Source/cmSubdirCommand.h @@ -4,6 +4,7 @@ #define cmSubdirCommand_h #include + #include #include diff --git a/Source/cmSubdirDependsCommand.h b/Source/cmSubdirDependsCommand.h index 80ff24f..669603f 100644 --- a/Source/cmSubdirDependsCommand.h +++ b/Source/cmSubdirDependsCommand.h @@ -4,6 +4,7 @@ #define cmSubdirDependsCommand_h #include + #include #include diff --git a/Source/cmTargetCompileDefinitionsCommand.h b/Source/cmTargetCompileDefinitionsCommand.h index caaf23b..46b779f 100644 --- a/Source/cmTargetCompileDefinitionsCommand.h +++ b/Source/cmTargetCompileDefinitionsCommand.h @@ -4,6 +4,7 @@ #define cmTargetCompileDefinitionsCommand_h #include + #include #include diff --git a/Source/cmTargetCompileFeaturesCommand.h b/Source/cmTargetCompileFeaturesCommand.h index 01f2938..453238d 100644 --- a/Source/cmTargetCompileFeaturesCommand.h +++ b/Source/cmTargetCompileFeaturesCommand.h @@ -4,6 +4,7 @@ #define cmTargetCompileFeaturesCommand_h #include + #include #include diff --git a/Source/cmTargetCompileOptionsCommand.h b/Source/cmTargetCompileOptionsCommand.h index 179013b..3943dde 100644 --- a/Source/cmTargetCompileOptionsCommand.h +++ b/Source/cmTargetCompileOptionsCommand.h @@ -4,6 +4,7 @@ #define cmTargetCompileOptionsCommand_h #include + #include #include diff --git a/Source/cmTargetIncludeDirectoriesCommand.h b/Source/cmTargetIncludeDirectoriesCommand.h index bc6cf0d..a9dfe3c 100644 --- a/Source/cmTargetIncludeDirectoriesCommand.h +++ b/Source/cmTargetIncludeDirectoriesCommand.h @@ -4,6 +4,7 @@ #define cmTargetIncludeDirectoriesCommand_h #include + #include #include diff --git a/Source/cmTargetLinkLibrariesCommand.h b/Source/cmTargetLinkLibrariesCommand.h index 762b48f..6343f3e 100644 --- a/Source/cmTargetLinkLibrariesCommand.h +++ b/Source/cmTargetLinkLibrariesCommand.h @@ -4,6 +4,7 @@ #define cmTargetLinkLibrariesCommand_h #include + #include #include diff --git a/Source/cmTargetSourcesCommand.h b/Source/cmTargetSourcesCommand.h index b1afac2..38bf31f 100644 --- a/Source/cmTargetSourcesCommand.h +++ b/Source/cmTargetSourcesCommand.h @@ -4,6 +4,7 @@ #define cmTargetSourcesCommand_h #include + #include #include diff --git a/Source/cmTryCompileCommand.h b/Source/cmTryCompileCommand.h index 52a0345..b2c386c 100644 --- a/Source/cmTryCompileCommand.h +++ b/Source/cmTryCompileCommand.h @@ -4,6 +4,7 @@ #define cmTryCompileCommand_h #include + #include #include diff --git a/Source/cmTryRunCommand.h b/Source/cmTryRunCommand.h index 8b44ac5..6cc74e1 100644 --- a/Source/cmTryRunCommand.h +++ b/Source/cmTryRunCommand.h @@ -4,6 +4,7 @@ #define cmTryRunCommand_h #include + #include #include diff --git a/Source/cmUnexpectedCommand.h b/Source/cmUnexpectedCommand.h index 897dfb6..096937a 100644 --- a/Source/cmUnexpectedCommand.h +++ b/Source/cmUnexpectedCommand.h @@ -4,6 +4,7 @@ #define cmUnexpectedCommand_h #include + #include #include diff --git a/Source/cmUnsetCommand.h b/Source/cmUnsetCommand.h index 5b07202..cf1c750 100644 --- a/Source/cmUnsetCommand.h +++ b/Source/cmUnsetCommand.h @@ -4,6 +4,7 @@ #define cmUnsetCommand_h #include + #include #include diff --git a/Source/cmUseMangledMesaCommand.h b/Source/cmUseMangledMesaCommand.h index 9a49f94..460ddd3 100644 --- a/Source/cmUseMangledMesaCommand.h +++ b/Source/cmUseMangledMesaCommand.h @@ -4,6 +4,7 @@ #define cmUseMangledMesaCommand_h #include + #include #include diff --git a/Source/cmUtilitySourceCommand.h b/Source/cmUtilitySourceCommand.h index 849b966..91e384a 100644 --- a/Source/cmUtilitySourceCommand.h +++ b/Source/cmUtilitySourceCommand.h @@ -4,6 +4,7 @@ #define cmUtilitySourceCommand_h #include + #include #include diff --git a/Source/cmVariableRequiresCommand.h b/Source/cmVariableRequiresCommand.h index baf717c..54e85c2 100644 --- a/Source/cmVariableRequiresCommand.h +++ b/Source/cmVariableRequiresCommand.h @@ -4,6 +4,7 @@ #define cmVariableRequiresCommand_h #include + #include #include diff --git a/Source/cmVariableWatchCommand.h b/Source/cmVariableWatchCommand.h index 919bac4..79ab6b0 100644 --- a/Source/cmVariableWatchCommand.h +++ b/Source/cmVariableWatchCommand.h @@ -4,6 +4,7 @@ #define cmVariableWatchCommand_h #include + #include #include #include diff --git a/Source/cmWhileCommand.h b/Source/cmWhileCommand.h index abd36b3..99ba1a5 100644 --- a/Source/cmWhileCommand.h +++ b/Source/cmWhileCommand.h @@ -4,6 +4,7 @@ #define cmWhileCommand_h #include + #include #include diff --git a/Source/cmWriteFileCommand.h b/Source/cmWriteFileCommand.h index 73e6e22..c785eeb 100644 --- a/Source/cmWriteFileCommand.h +++ b/Source/cmWriteFileCommand.h @@ -4,6 +4,7 @@ #define cmWriteFileCommand_h #include + #include #include -- cgit v0.12