[Cmake-commits] CMake branch, next, updated. v3.1.0-1870-g84fa667
Clinton Stimpson
clinton at elemtech.com
Wed Jan 14 01:59:37 EST 2015
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 84fa667ac294544aee9b0baed03f49776d6b1d1e (commit)
via 17f2053b9dbe7c23fe56fea0550bd5dd19ba510d (commit)
via 2ece34516a6c4f99d27c42018b3548d0cb75e72e (commit)
from 261a06e8ed0fd47ceb7d38cd3f64061a6e5ee876 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=84fa667ac294544aee9b0baed03f49776d6b1d1e
commit 84fa667ac294544aee9b0baed03f49776d6b1d1e
Merge: 261a06e 17f2053b
Author: Clinton Stimpson <clinton at elemtech.com>
AuthorDate: Wed Jan 14 01:59:36 2015 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jan 14 01:59:36 2015 -0500
Merge topic 'windows-utf-8' into next
17f2053b Encoding: Switch to use UTF-8 internally by default on Windows.
2ece3451 CMake Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=17f2053b9dbe7c23fe56fea0550bd5dd19ba510d
commit 17f2053b9dbe7c23fe56fea0550bd5dd19ba510d
Author: Clinton Stimpson <clinton at elemtech.com>
AuthorDate: Fri Dec 26 21:25:20 2014 -0700
Commit: Clinton Stimpson <clinton at elemtech.com>
CommitDate: Tue Jan 13 23:54:41 2015 -0700
Encoding: Switch to use UTF-8 internally by default on Windows.
This fixes several reported bugs about CMake not handling
non-ascii paths on Windows.
Practically, the use of some unicode characters may still
be limited by the build or compiler tools.
For example, a user may be limited by the build tools to
using characters within the Windows ANSI code page (which can
include non-ascii characters in the current system language).
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1812b27..33d2ce6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -45,7 +45,7 @@ if(NOT DEFINED CMAKE_CXX_STANDARD)
endif()
# option to set the internal encoding of CMake to UTF-8
-option(CMAKE_ENCODING_UTF8 "Use UTF-8 encoding internally (experimental)." OFF)
+option(CMAKE_ENCODING_UTF8 "Use UTF-8 encoding internally." ON)
mark_as_advanced(CMAKE_ENCODING_UTF8)
if(CMAKE_ENCODING_UTF8)
set(KWSYS_ENCODING_DEFAULT_CODEPAGE CP_UTF8)
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 2 +-
Source/CMakeVersion.cmake | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list