diff options
author | Brad King <brad.king@kitware.com> | 2016-11-08 09:44:40 -0500 |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-11-08 09:44:40 -0500 |
commit | 666bb0e3fa0d212c03f785bd9f6bc05d29925e1f (patch) | |
tree | c449804319ac490aa80214d9e31265dea4075abe /Source/cmGeneratorTarget.cxx | |
parent | 4ec359bd6256e870d9b233fd5cd105e452a62300 (diff) | |
parent | 2e620f0b3834e5a612a38d61b7e50a561d7f11e8 (diff) | |
download | cmake-666bb0e3fa0d212c03f785bd9f6bc05d29925e1f.tar.gz |
Merge topic 'include-what-you-use'
2e620f0b Fix several include-what-you-use findings
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index f5db7f6370..1a454accbb 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -2,6 +2,17 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #include "cmGeneratorTarget.h" +#include <algorithm> +#include <assert.h> +#include <cmsys/RegularExpression.hxx> +#include <errno.h> +#include <iterator> +#include <queue> +#include <sstream> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + #include "cmAlgorithms.h" #include "cmComputeLinkInformation.h" #include "cmCustomCommand.h" @@ -24,16 +35,7 @@ #include "cm_unordered_set.hxx" #include "cmake.h" -#include <algorithm> -#include <assert.h> -#include <cmsys/RegularExpression.hxx> -#include <errno.h> -#include <iterator> -#include <queue> -#include <sstream> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> +class cmMessenger; template <> const char* cmTargetPropertyComputer::GetSources<cmGeneratorTarget>( |