diff options
author | Dāvis Mosāns <davispuh@gmail.com> | 2016-10-05 16:46:20 +0300 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-10-06 10:56:00 -0400 |
commit | c666f8cbc6cb81b0729e116890c70096fd2101ac (patch) | |
tree | f3076e9bef190d833e291d12b8eece8201d52b8a /Source/cmGlobalGenerator.h | |
parent | f00214aa4f8036951a926efd7dc3891d47abce49 (diff) | |
download | cmake-c666f8cbc6cb81b0729e116890c70096fd2101ac.tar.gz |
NMake: Use ANSI encoding for NMake Makefiles
Set ANSI encoding to cmGeneratedFileStream for use with NMake Makefile
generator.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 4120b52eaf..355bc56456 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -10,6 +10,7 @@ #include "cmSystemTools.h" #include "cmTarget.h" #include "cmTargetDepend.h" +#include "cm_codecvt.hxx" #include <iosfwd> #include <map> @@ -60,6 +61,12 @@ public: return this->GetName() == name; } + /** Get encoding used by generator for makefile files */ + virtual codecvt::Encoding GetMakefileEncoding() const + { + return codecvt::None; + } + /** Tell the generator about the target system. */ virtual bool SetSystemName(std::string const&, cmMakefile*) { return true; } |