OBJCXX_STANDARD.rst 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. OBJCXX_STANDARD
  2. ---------------
  3. The ObjC++ standard whose features are requested to build this target.
  4. This property specifies the ObjC++ 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``, ``11``, ``14``, ``17``, and ``20``.
  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 OBJCXX_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:`OBJCXX_STANDARD_REQUIRED` target property.
  17. Additionally, the :prop_tgt:`OBJCXX_EXTENSIONS` target property may be used to
  18. control whether compiler-specific extensions are enabled on a per-target basis.
  19. If the property is not set, and the project has set the :prop_tgt:`CXX_STANDARD`,
  20. the value of :prop_tgt:`CXX_STANDARD` is set for :prop_tgt:`OBJCXX_STANDARD`.
  21. See the :manual:`cmake-compile-features(7)` manual for information on
  22. compile features and a list of supported compilers.
  23. This property is initialized by the value of
  24. the :variable:`CMAKE_OBJCXX_STANDARD` variable if it is set when a target
  25. is created.