diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-19 08:54:18 +0200 |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-21 18:14:50 +0200 |
commit | f69e768d94ff5e0238cbb924836737c4ce11a930 (patch) | |
tree | 88d4d5f0725b81517779456a6a2c9dd9136a5297 /Source/cmOutputRequiredFilesCommand.cxx | |
parent | 1e555a44aa4e3d40bca2f88915c9f957098e5a55 (diff) | |
download | cmake-f69e768d94ff5e0238cbb924836737c4ce11a930.tar.gz |
Separate compilation for commands included in cmCommands
Diffstat (limited to 'Source/cmOutputRequiredFilesCommand.cxx')
-rw-r--r-- | Source/cmOutputRequiredFilesCommand.cxx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Source/cmOutputRequiredFilesCommand.cxx b/Source/cmOutputRequiredFilesCommand.cxx index 8b629fe1bd..6ecd942b1a 100644 --- a/Source/cmOutputRequiredFilesCommand.cxx +++ b/Source/cmOutputRequiredFilesCommand.cxx @@ -2,8 +2,18 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #include "cmOutputRequiredFilesCommand.h" -#include "cmAlgorithms.h" #include <cmsys/FStream.hxx> +#include <cmsys/RegularExpression.hxx> + +#include "cmAlgorithms.h" +#include "cmGeneratorExpression.h" +#include "cmMakefile.h" +#include "cmPolicies.h" +#include "cmSourceFile.h" +#include "cmSystemTools.h" +#include "cmTarget.h" + +class cmExecutionStatus; /** \class cmDependInformation * \brief Store dependency information for a single source file. |