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.cxx | |
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.cxx')
-rw-r--r-- | Source/cmGlobalNMakeMakefileGenerator.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/cmGlobalNMakeMakefileGenerator.cxx b/Source/cmGlobalNMakeMakefileGenerator.cxx index a038f87..9f3d30e 100644 --- a/Source/cmGlobalNMakeMakefileGenerator.cxx +++ b/Source/cmGlobalNMakeMakefileGenerator.cxx @@ -2,13 +2,20 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #include "cmGlobalNMakeMakefileGenerator.h" +#include <ostream> + +#include <cmext/algorithm> + #include "cmsys/RegularExpression.hxx" #include "cmDocumentationEntry.h" #include "cmDuration.h" -#include "cmLocalUnixMakefileGenerator3.h" +#include "cmGlobalGenerator.h" #include "cmMakefile.h" +#include "cmMessageType.h" #include "cmState.h" +#include "cmStringAlgorithms.h" +#include "cmSystemTools.h" #include "cmake.h" cmGlobalNMakeMakefileGenerator::cmGlobalNMakeMakefileGenerator(cmake* cm) |