diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-11-14 10:58:11 (GMT) |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2021-11-19 15:50:33 (GMT) |
commit | 0e58a5ea0797f2bb0a99ded98244705eb8c85708 (patch) | |
tree | 2cd2daca25a2625f4cd5a12e78156199022284d3 /Source/cmGlobalNMakeMakefileGenerator.h | |
parent | eb9991ad62666649b0349b8c1e88255330c1c05c (diff) | |
download | CMake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.zip CMake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.tar.gz CMake-0e58a5ea0797f2bb0a99ded98244705eb8c85708.tar.bz2 |
Source: Fix possible IWYU warnings in Windows generators
Diffstat (limited to 'Source/cmGlobalNMakeMakefileGenerator.h')
-rw-r--r-- | Source/cmGlobalNMakeMakefileGenerator.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmGlobalNMakeMakefileGenerator.h b/Source/cmGlobalNMakeMakefileGenerator.h index 4f202b5..ca5b8d6 100644 --- a/Source/cmGlobalNMakeMakefileGenerator.h +++ b/Source/cmGlobalNMakeMakefileGenerator.h @@ -4,8 +4,18 @@ #include <iosfwd> #include <memory> +#include <string> +#include <vector> +#include "cm_codecvt.hxx" + +#include "cmGlobalGeneratorFactory.h" #include "cmGlobalUnixMakefileGenerator3.h" +#include "cmValue.h" + +class cmMakefile; +class cmake; +struct cmDocumentationEntry; /** \class cmGlobalNMakeMakefileGenerator * \brief Write a NMake makefiles. |