diff options
author | Brad King <brad.king@kitware.com> | 2016-11-28 19:24:07 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-11-28 19:24:07 (GMT) |
commit | 4093bd4025e65bdc75254bc7d08a675b10808a22 (patch) | |
tree | 2a4a0140ed7be3de05db9043af61bbe11decf83b /Source/cmGlobalVisualStudio15Generator.h | |
parent | 56c5c8e17aab80fe006d3de064d322dc31e8f25b (diff) | |
parent | d0c14dfb3694d076b8115d64dc317fd686b90aa2 (diff) | |
download | CMake-4093bd4025e65bdc75254bc7d08a675b10808a22.zip CMake-4093bd4025e65bdc75254bc7d08a675b10808a22.tar.gz CMake-4093bd4025e65bdc75254bc7d08a675b10808a22.tar.bz2 |
Merge topic 'include-what-you-use'
d0c14dfb avoid including cmStandardIncludes.h
66a70999 iwyu: Fix VisualStudio specific issues
7b4244ac iwyu: Fix more findings
aeff60e4 iwyu: Fix OSX specific issues
Diffstat (limited to 'Source/cmGlobalVisualStudio15Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio15Generator.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio15Generator.h b/Source/cmGlobalVisualStudio15Generator.h index 2e458f4..59eb11a 100644 --- a/Source/cmGlobalVisualStudio15Generator.h +++ b/Source/cmGlobalVisualStudio15Generator.h @@ -3,8 +3,16 @@ #ifndef cmGlobalVisualStudio15Generator_h #define cmGlobalVisualStudio15Generator_h +#include <cmConfigure.h> + +#include <iosfwd> +#include <string> + #include "cmGlobalVisualStudio14Generator.h" +class cmGlobalGeneratorFactory; +class cmake; + /** \class cmGlobalVisualStudio15Generator */ class cmGlobalVisualStudio15Generator : public cmGlobalVisualStudio14Generator { |