diff options
author | Brad King <brad.king@kitware.com> | 2014-06-02 14:44:28 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-06-02 14:44:28 (GMT) |
commit | 7b888a56242f451ce6771145f5864ec51abd0885 (patch) | |
tree | 295f19d036005fb1d8f338f106db222cb93c5d5b /Help/command | |
parent | 4b8ec7514a4214b526687b12ed2f310697d395ad (diff) | |
parent | 60a981ea8eda7a5af679ca3b2e4d54bc50ad61b3 (diff) | |
download | CMake-7b888a56242f451ce6771145f5864ec51abd0885.zip CMake-7b888a56242f451ce6771145f5864ec51abd0885.tar.gz CMake-7b888a56242f451ce6771145f5864ec51abd0885.tar.bz2 |
Merge topic 'feature-extensions-by-default'
60a981ea Features: Enable compiler extensions by default.
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/target_compile_features.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/target_compile_features.rst b/Help/command/target_compile_features.rst index a6503db..29a8b41 100644 --- a/Help/command/target_compile_features.rst +++ b/Help/command/target_compile_features.rst @@ -11,7 +11,7 @@ Specify compiler features required when compiling a given target. If the feature is not listed in the :variable:`CMAKE_C_COMPILE_FEATURES` variable or :variable:`CMAKE_CXX_COMPILE_FEATURES` variable, then an error will be reported by CMake. If the use of the feature requires -an additional compiler flag, such as ``-std=c++11``, the flag will be added +an additional compiler flag, such as ``-std=gnu++11``, the flag will be added automatically. The ``INTERFACE``, ``PUBLIC`` and ``PRIVATE`` keywords are required to |