diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-25 20:35:04 +0200 |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-26 09:02:44 +0200 |
commit | e81c323da9c020c91c967184ecf98f806eb95867 (patch) | |
tree | 917569084dfc383da40635de6f04320d398c1f06 /Source/cmAddCustomCommandCommand.cxx | |
parent | 2a567c68ce6605071f3e21638560493b71ed2841 (diff) | |
download | cmake-e81c323da9c020c91c967184ecf98f806eb95867.tar.gz |
Include necessary headers in commands
Diffstat (limited to 'Source/cmAddCustomCommandCommand.cxx')
-rw-r--r-- | Source/cmAddCustomCommandCommand.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/cmAddCustomCommandCommand.cxx b/Source/cmAddCustomCommandCommand.cxx index 1ab4ef6ac8..620de31d33 100644 --- a/Source/cmAddCustomCommandCommand.cxx +++ b/Source/cmAddCustomCommandCommand.cxx @@ -2,11 +2,19 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #include "cmAddCustomCommandCommand.h" -#include "cmTarget.h" +#include <sstream> +#include "cmCustomCommand.h" +#include "cmCustomCommandLines.h" +#include "cmGlobalGenerator.h" +#include "cmMakefile.h" +#include "cmPolicies.h" #include "cmSourceFile.h" +#include "cmSystemTools.h" +#include "cmTarget.h" +#include "cmake.h" -#include "cmGlobalGenerator.h" +class cmExecutionStatus; // cmAddCustomCommandCommand bool cmAddCustomCommandCommand::InitialPass( |