diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-25 21:54:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-28 19:06:40 (GMT) |
commit | 66a709999349b5a7964c2647c41f4759fe2141ee (patch) | |
tree | e6ef43618243f6a7bb42c63f6ee67e3e103b84af /Source/cmGlobalVisualStudioGenerator.h | |
parent | 7b4244aceb44aad117dfaccfb2287fbddbe9eca7 (diff) | |
download | CMake-66a709999349b5a7964c2647c41f4759fe2141ee.zip CMake-66a709999349b5a7964c2647c41f4759fe2141ee.tar.gz CMake-66a709999349b5a7964c2647c41f4759fe2141ee.tar.bz2 |
iwyu: Fix VisualStudio specific issues
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 0e88bce..f32f0bb 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -3,7 +3,22 @@ #ifndef cmGlobalVisualStudioGenerator_h #define cmGlobalVisualStudioGenerator_h +#include <cmConfigure.h> + +#include <iosfwd> +#include <map> +#include <set> +#include <string> +#include <vector> + #include "cmGlobalGenerator.h" +#include "cmTargetDepend.h" + +class cmCustomCommand; +class cmGeneratorTarget; +class cmLocalGenerator; +class cmMakefile; +class cmake; /** \class cmGlobalVisualStudioGenerator * \brief Base class for global Visual Studio generators. |