CMake/Tests/Cuda/Toolkit/cupti.cpp
Peter Bell e6b51a1b01 CUDAToolkit: Add include paths for CUDA::cupti
CUDA's cupti library has its headers in a seperate directory on a
standard CUDA install, but `CUDA::cupti` only adds the default cuda
include directory.

Issue: #22761
2022-04-26 13:48:02 -04:00

8 lines
107 B
C++

// Only thing we care about is that these headers are found
#include <cupti.h>
int main()
{
return 0;
}