1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00

Merge topic 'use-latest-language-dialects'

d49f1c5e Build CMake with most-recent available language dialect.
This commit is contained in:
Brad King
2014-12-01 08:57:16 -05:00
committed by CMake Topic Stage

View File

@@ -36,6 +36,10 @@ if("${CMake_SOURCE_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
endmacro()
endif()
# Use most-recent available language dialects with GNU and Clang
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 14)
# option to set the internal encoding of CMake to UTF-8
option(CMAKE_ENCODING_UTF8 "Use UTF-8 encoding internally (experimental)." OFF)
mark_as_advanced(CMAKE_ENCODING_UTF8)