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/cmVisualStudioGeneratorOptions.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/cmVisualStudioGeneratorOptions.cxx')
-rw-r--r-- | Source/cmVisualStudioGeneratorOptions.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/cmVisualStudioGeneratorOptions.cxx b/Source/cmVisualStudioGeneratorOptions.cxx index 058ffb4..e495db0 100644 --- a/Source/cmVisualStudioGeneratorOptions.cxx +++ b/Source/cmVisualStudioGeneratorOptions.cxx @@ -1,12 +1,18 @@ #include "cmVisualStudioGeneratorOptions.h" +#include <algorithm> +#include <map> +#include <sstream> +#include <utility> +#include <vector> + #include <cm/iterator> #include "cmAlgorithms.h" -#include "cmGeneratorExpression.h" -#include "cmGeneratorTarget.h" #include "cmLocalVisualStudioGenerator.h" #include "cmOutputConverter.h" +#include "cmRange.h" +#include "cmStringAlgorithms.h" #include "cmSystemTools.h" static void cmVS10EscapeForMSBuild(std::string& ret) |