CUDA_STANDARD.rst 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. CUDA_STANDARD
  2. -------------
  3. The CUDA/C++ standard whose features are requested to build this target.
  4. This property specifies the CUDA/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``, ``11``, ``14``.
  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 CUDA_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:`CUDA_STANDARD_REQUIRED` target property.
  17. Additionally, the :prop_tgt:`CUDA_EXTENSIONS` target property may be used to
  18. control whether compiler-specific extensions are enabled on a per-target basis.
  19. See the :manual:`cmake-compile-features(7)` manual for information on
  20. compile features and a list of supported compilers.
  21. This property is initialized by the value of
  22. the :variable:`CMAKE_CUDA_STANDARD` variable if it is set when a target
  23. is created.