mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
Fixes #17559 Replace our hard-coded default of cudart=static with a first-class abstraction to select the runtime library from an enumeration of logical names.
10 lines
325 B
Plaintext
10 lines
325 B
Plaintext
``None``
|
|
Link with ``-cudart=none`` or equivalent flag(s) to use no CUDA
|
|
runtime library.
|
|
``Shared``
|
|
Link with ``-cudart=shared`` or equivalent flag(s) to use a
|
|
dynamically-linked CUDA runtime library.
|
|
``Static``
|
|
Link with ``-cudart=static`` or equivalent flag(s) to use a
|
|
statically-linked CUDA runtime library.
|