diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-11-14 19:58:11 +0900 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-11-20 00:50:33 +0900 |
commit | 0e58a5ea0797f2bb0a99ded98244705eb8c85708 (patch) | |
tree | 2cd2daca25a2625f4cd5a12e78156199022284d3 /Source/cmGlobalVisualStudio8Generator.h | |
parent | eb9991ad62666649b0349b8c1e88255330c1c05c (diff) | |
download | cmake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.tar.gz |
Source: Fix possible IWYU warnings in Windows generators
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index b6ecdf07f8..fe57c545fd 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -2,10 +2,20 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #pragma once +#include <iosfwd> +#include <set> +#include <string> +#include <vector> + #include <cm/optional> #include "cmGlobalVisualStudio71Generator.h" +class cmGeneratorTarget; +class cmMakefile; +class cmake; +struct cmIDEFlagTable; + /** \class cmGlobalVisualStudio8Generator * \brief Write a Unix makefiles. * |