diff options
author | Brad King <brad.king@kitware.com> | 2023-06-23 15:19:41 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-06-23 15:20:00 (GMT) |
commit | 994e88ec387a521e498c4b0ae71fd3a663473a45 (patch) | |
tree | 94e30845cdad7bef91054ec5c66e2df82a2a6a04 /Source/cmGlobalVisualStudioGenerator.h | |
parent | 09df135b606a019b63ecfbb59cf08b2aa1bd4f5c (diff) | |
parent | aba5bab62ea2dbd218e88f2d430c975abb65949d (diff) | |
download | CMake-994e88ec387a521e498c4b0ae71fd3a663473a45.zip CMake-994e88ec387a521e498c4b0ae71fd3a663473a45.tar.gz CMake-994e88ec387a521e498c4b0ae71fd3a663473a45.tar.bz2 |
Merge topic 'build-pch'
aba5bab62e ci: Add nightly job to build CMake with PCH on macOS
44f08e94ff ci: Add nightly job to build CMake with PCH on Windows
e0eb97e923 libuv: Precompile common expensive headers
e2efa89c7f cmcppdap: Precompile common expensive headers
9d7921d388 liblzma: Precompile common expensive headers
6aaefdb3be libarchive: Precompile common expensive headers
a8d91e2719 curl: Precompile common expensive headers
59277bccd3 bzip: Precompile common expensive headers
...
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !8571
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 48c840b..76713fa 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -10,7 +10,7 @@ #include <string> #include <vector> -#include "cm_codecvt.hxx" +#include "cm_codecvt_Encoding.hxx" #include "cmGlobalGenerator.h" #include "cmTargetDepend.h" @@ -119,9 +119,9 @@ public: /** Get encoding used by generator for generated source files */ - codecvt::Encoding GetMakefileEncoding() const override + codecvt_Encoding GetMakefileEncoding() const override { - return codecvt::ANSI; + return codecvt_Encoding::ANSI; } class TargetSet : public std::set<cmGeneratorTarget const*> |