Files
CMake/Tests/Cuda/ToolkitInclude/main.cpp
Robert Maynard 44f3acb202 CUDA: Detect the toolkit include directories
The `nvcc -v` output provides what include directories need to be added
to use the CUDA toolkit from other languages ( C/C++ ).
2017-02-10 16:08:06 -05:00

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;
}