mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
Refined the initial design of FindCUDAToolkit and improve it by adding more library support, more toolkit information and tests.
9 lines
136 B
C++
9 lines
136 B
C++
// Only thing we care about is that these headers are found
|
|
#include <cuda.h>
|
|
#include <cuda_runtime_api.h>
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|