mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-27 01:19:31 -05:00
e2a5d8374f
Refined the initial design of FindCUDAToolkit and improve it by adding more library support, more toolkit information and tests.
9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
// Only thing we care about is that these headers are found
|
|
#include <cuda.h>
|
|
#include <cuda_runtime_api.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
return 0;
|
|
}
|