C_STANDARD.rst 1.0 KB

123456789101112131415161718192021222324252627282930
  1. C_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=gnu11`` to the compile line.
  7. Supported values are ``90``, ``99`` 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 C_STANDARD 11)
  13. with a compiler which does not support ``-std=gnu11`` or an equivalent
  14. flag will not result in an error or warning, but will instead add the
  15. ``-std=gnu99`` or ``-std=gnu90`` flag if supported. This "decay" behavior may
  16. be controlled with the :prop_tgt:`C_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_C_STANDARD` variable if it is set when a target
  21. is created.