mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 20:29:56 -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.
12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
|
|
|
|
int shared_version();
|
|
int static_version();
|
|
int mixed_version();
|
|
|
|
int main()
|
|
{
|
|
return mixed_version() == 0 && shared_version() == 0 &&
|
|
static_version() == 0;
|
|
}
|