diff options
author | Brad King <brad.king@kitware.com> | 2014-05-27 13:46:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-05-27 13:46:35 (GMT) |
commit | c5315524629bea99ccaaa4e0e666fe4918f66064 (patch) | |
tree | 84a683880a9e2f74e430fd28368cdce6afd9fb75 /Help/variable | |
parent | 4a67e9cd4122e668a6d0352e2a18a4aad6953d7d (diff) | |
parent | ca5d990f02b464f5b5033311d3712ffb02dbd54a (diff) | |
download | CMake-c5315524629bea99ccaaa4e0e666fe4918f66064.zip CMake-c5315524629bea99ccaaa4e0e666fe4918f66064.tar.gz CMake-c5315524629bea99ccaaa4e0e666fe4918f66064.tar.bz2 |
Merge topic 'compile-features-manual'
ca5d990f Help: Add a manual for compiler feature control.
b4d33f64 Features: Add missing variable reference in docs.
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_CXX_COMPILE_FEATURES.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_CXX_EXTENSIONS.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_CXX_STANDARD.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_CXX_STANDARD_REQUIRED.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_C_COMPILE_FEATURES.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_C_EXTENSIONS.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_C_STANDARD.rst | 3 | ||||
-rw-r--r-- | Help/variable/CMAKE_C_STANDARD_REQUIRED.rst | 3 |
8 files changed, 24 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_CXX_COMPILE_FEATURES.rst b/Help/variable/CMAKE_CXX_COMPILE_FEATURES.rst index 1102c21..460c78c 100644 --- a/Help/variable/CMAKE_CXX_COMPILE_FEATURES.rst +++ b/Help/variable/CMAKE_CXX_COMPILE_FEATURES.rst @@ -6,3 +6,6 @@ List of features known to the C++ compiler These features are known to be available for use with the C++ compiler. This list is a subset of the features listed in the :prop_gbl:`CMAKE_CXX_KNOWN_FEATURES` global property. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_CXX_EXTENSIONS.rst b/Help/variable/CMAKE_CXX_EXTENSIONS.rst index 734d508..6448371 100644 --- a/Help/variable/CMAKE_CXX_EXTENSIONS.rst +++ b/Help/variable/CMAKE_CXX_EXTENSIONS.rst @@ -6,3 +6,6 @@ Default value for ``CXX_EXTENSIONS`` property of targets. This variable is used to initialize the :prop_tgt:`CXX_EXTENSIONS` property on all targets. See that target property for additional information. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_CXX_STANDARD.rst b/Help/variable/CMAKE_CXX_STANDARD.rst index 5fd4138..963a42a 100644 --- a/Help/variable/CMAKE_CXX_STANDARD.rst +++ b/Help/variable/CMAKE_CXX_STANDARD.rst @@ -6,3 +6,6 @@ Default value for ``CXX_STANDARD`` property of targets. This variable is used to initialize the :prop_tgt:`CXX_STANDARD` property on all targets. See that target property for additional information. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_CXX_STANDARD_REQUIRED.rst b/Help/variable/CMAKE_CXX_STANDARD_REQUIRED.rst index ff005da..f7750fa 100644 --- a/Help/variable/CMAKE_CXX_STANDARD_REQUIRED.rst +++ b/Help/variable/CMAKE_CXX_STANDARD_REQUIRED.rst @@ -6,3 +6,6 @@ Default value for ``CXX_STANDARD_REQUIRED`` property of targets. This variable is used to initialize the :prop_tgt:`CXX_STANDARD_REQUIRED` property on all targets. See that target property for additional information. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_C_COMPILE_FEATURES.rst b/Help/variable/CMAKE_C_COMPILE_FEATURES.rst index 7d1c8b1..1106246 100644 --- a/Help/variable/CMAKE_C_COMPILE_FEATURES.rst +++ b/Help/variable/CMAKE_C_COMPILE_FEATURES.rst @@ -6,3 +6,6 @@ List of features known to the C compiler These features are known to be available for use with the C compiler. This list is a subset of the features listed in the :prop_gbl:`CMAKE_C_KNOWN_FEATURES` global property. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_C_EXTENSIONS.rst b/Help/variable/CMAKE_C_EXTENSIONS.rst index ff2569b..5e935fc 100644 --- a/Help/variable/CMAKE_C_EXTENSIONS.rst +++ b/Help/variable/CMAKE_C_EXTENSIONS.rst @@ -6,3 +6,6 @@ Default value for ``C_EXTENSIONS`` property of targets. This variable is used to initialize the :prop_tgt:`C_EXTENSIONS` property on all targets. See that target property for additional information. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_C_STANDARD.rst b/Help/variable/CMAKE_C_STANDARD.rst index c1f8c29..3098ce5 100644 --- a/Help/variable/CMAKE_C_STANDARD.rst +++ b/Help/variable/CMAKE_C_STANDARD.rst @@ -6,3 +6,6 @@ Default value for ``C_STANDARD`` property of targets. This variable is used to initialize the :prop_tgt:`C_STANDARD` property on all targets. See that target property for additional information. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. diff --git a/Help/variable/CMAKE_C_STANDARD_REQUIRED.rst b/Help/variable/CMAKE_C_STANDARD_REQUIRED.rst index 13ea49f..c24eea4 100644 --- a/Help/variable/CMAKE_C_STANDARD_REQUIRED.rst +++ b/Help/variable/CMAKE_C_STANDARD_REQUIRED.rst @@ -6,3 +6,6 @@ Default value for ``C_STANDARD_REQUIRED`` property of targets. This variable is used to initialize the :prop_tgt:`C_STANDARD_REQUIRED` property on all targets. See that target property for additional information. + +See the :manual:`cmake-compile-features(7)` manual for information on +compile features. |