diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-08-17 22:24:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-23 12:56:59 (GMT) |
commit | f29d18477360388cf66be5f1c17e2aae5fb14453 (patch) | |
tree | de9739165c94945e32e2fd354924b65126486ca1 /Source/cmComputeLinkDepends.h | |
parent | 373b2e483d983136415190dcc838e636077e5991 (diff) | |
download | CMake-f29d18477360388cf66be5f1c17e2aae5fb14453.zip CMake-f29d18477360388cf66be5f1c17e2aae5fb14453.tar.gz CMake-f29d18477360388cf66be5f1c17e2aae5fb14453.tar.bz2 |
fix a batch of include-what-you-use violations
Diffstat (limited to 'Source/cmComputeLinkDepends.h')
-rw-r--r-- | Source/cmComputeLinkDepends.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmComputeLinkDepends.h b/Source/cmComputeLinkDepends.h index 4a33aff..7cd4140 100644 --- a/Source/cmComputeLinkDepends.h +++ b/Source/cmComputeLinkDepends.h @@ -12,17 +12,22 @@ #ifndef cmComputeLinkDepends_h #define cmComputeLinkDepends_h -#include "cmStandardIncludes.h" +#include <cmConfigure.h> // IWYU pragma: keep #include "cmGraphAdjacencyList.h" #include "cmLinkItem.h" +#include "cmTargetLinkLibraryType.h" +#include <map> #include <queue> +#include <set> +#include <string> +#include <vector> class cmComputeComponentGraph; +class cmGeneratorTarget; class cmGlobalGenerator; class cmMakefile; -class cmGeneratorTarget; class cmake; /** \class cmComputeLinkDepends |