diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-02 13:57:15 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-07 14:52:22 (GMT) |
commit | 03355d6b5b382020e7dafb28605e6d8d2f20de3c (patch) | |
tree | 6ab7c7c46b02d36f28bd1309063e41b598b0e3dd /Help/prop_tgt/COMPILE_FEATURES.rst | |
parent | faeddf64f21b592a5663803ca8accdf9f4b73c29 (diff) | |
download | CMake-03355d6b5b382020e7dafb28605e6d8d2f20de3c.zip CMake-03355d6b5b382020e7dafb28605e6d8d2f20de3c.tar.gz CMake-03355d6b5b382020e7dafb28605e6d8d2f20de3c.tar.bz2 |
cmTarget: Add COMPILE_FEATURES target property.
Use the contents of it to upgrade the CXX_STANDARD target property,
if appropriate. This will have the effect of adding the -std=c++11
compile flag or other language specification on GNU when that is
needed for the feature.
Diffstat (limited to 'Help/prop_tgt/COMPILE_FEATURES.rst')
-rw-r--r-- | Help/prop_tgt/COMPILE_FEATURES.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/prop_tgt/COMPILE_FEATURES.rst b/Help/prop_tgt/COMPILE_FEATURES.rst new file mode 100644 index 0000000..b2c6145 --- /dev/null +++ b/Help/prop_tgt/COMPILE_FEATURES.rst @@ -0,0 +1,7 @@ +COMPILE_FEATURES +---------------- + +Compiler features enabled for this target. + +The list of features in this property are a subset of the features listed +in the :variable:`CMAKE_CXX_COMPILE_FEATURES` variable. |