diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-25 22:54:58 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-28 14:06:40 -0500 |
commit | 66a709999349b5a7964c2647c41f4759fe2141ee (patch) | |
tree | e6ef43618243f6a7bb42c63f6ee67e3e103b84af /Source/cmGlobalVisualStudio11Generator.h | |
parent | 7b4244aceb44aad117dfaccfb2287fbddbe9eca7 (diff) | |
download | cmake-66a709999349b5a7964c2647c41f4759fe2141ee.tar.gz |
iwyu: Fix VisualStudio specific issues
Diffstat (limited to 'Source/cmGlobalVisualStudio11Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio11Generator.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio11Generator.h b/Source/cmGlobalVisualStudio11Generator.h index be78544620..ae994087f7 100644 --- a/Source/cmGlobalVisualStudio11Generator.h +++ b/Source/cmGlobalVisualStudio11Generator.h @@ -3,7 +3,18 @@ #ifndef cmGlobalVisualStudio11Generator_h #define cmGlobalVisualStudio11Generator_h +#include <cmConfigure.h> + +#include <iosfwd> +#include <set> +#include <string> + #include "cmGlobalVisualStudio10Generator.h" +#include "cmStateTypes.h" + +class cmGlobalGeneratorFactory; +class cmMakefile; +class cmake; /** \class cmGlobalVisualStudio11Generator */ class cmGlobalVisualStudio11Generator : public cmGlobalVisualStudio10Generator |