CXX_STANDARD.rst 1.0 KB

123456789101112131415161718192021222324252627282930
  1. CXX_STANDARD
  2. ------------
  3. The C++ standard whose features are requested to build this target.
  4. This property specifies the C++ standard whose features are requested
  5. to build this target. For some compilers, this results in adding a
  6. flag such as ``-std=gnu++11`` to the compile line.
  7. Supported values are ``98`` and ``11``.
  8. If the value requested does not result in a compile flag being added for
  9. the compiler in use, a previous standard flag will be added instead. This
  10. means that using:
  11. .. code-block:: cmake
  12. set_property(TARGET tgt PROPERTY CXX_STANDARD 11)
  13. with a compiler which does not support ``-std=gnu++11`` or an equivalent
  14. flag will not result in an error or warning, but will instead add the
  15. ``-std=gnu++98`` flag if supported. This "decay" behavior may be controlled
  16. with the :prop_tgt:`CXX_STANDARD_REQUIRED` target property.
  17. See the :manual:`cmake-compile-features(7)` manual for information on
  18. compile features.
  19. This property is initialized by the value of
  20. the :variable:`CMAKE_CXX_STANDARD` variable if it is set when a target
  21. is created.