diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2014-03-14 14:48:42 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2014-03-14 14:48:42 (GMT) |
commit | ee8cef8725486519a7ab47eb16208d4d64e0ab99 (patch) | |
tree | bc967cae43b43a6fa756349622a34152dcd6e0b3 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 91fd99b86532dbf35d8c7396654b9beac058c8f3 (diff) | |
download | CMake-ee8cef8725486519a7ab47eb16208d4d64e0ab99.zip CMake-ee8cef8725486519a7ab47eb16208d4d64e0ab99.tar.gz CMake-ee8cef8725486519a7ab47eb16208d4d64e0ab99.tar.bz2 |
Encoding: If configured, write Visual Studio project files as UTF-8.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 7c55f64..8e8968d 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -222,7 +222,8 @@ void cmVisualStudio10TargetGenerator::Generate() //get the tools version to use const std::string toolsVer(this->GlobalGenerator->GetToolsVersion()); std::string project_defaults= - "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\n"; + "<?xml version=\"1.0\" encoding=\"" + + this->GlobalGenerator->Encoding() + "\"?>\n"; project_defaults.append("<Project DefaultTargets=\"Build\" ToolsVersion=\""); project_defaults.append(toolsVer +"\" "); project_defaults.append( @@ -732,7 +733,8 @@ void cmVisualStudio10TargetGenerator::WriteGroups() //get the tools version to use const std::string toolsVer(this->GlobalGenerator->GetToolsVersion()); std::string project_defaults= - "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\n"; + "<?xml version=\"1.0\" encoding=\"" + + this->GlobalGenerator->Encoding() + "\"?>\n"; project_defaults.append("<Project ToolsVersion=\""); project_defaults.append(toolsVer +"\" "); project_defaults.append( |