mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
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;
|
|
}
|