mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 04:40: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.
9 lines
113 B
Plaintext
9 lines
113 B
Plaintext
|
|
int curand_main();
|
|
int nppif_main();
|
|
|
|
int mixed_version()
|
|
{
|
|
return curand_main() == 0 && nppif_main() == 0;
|
|
}
|