I’m using Visual Studio 2022 on Windows 11 and I am tryin to get a cross-platform Cuda project setup so I can run it through the Cuda Debugger. So far every attempt at generating a VS solution results in several issues.
- None of the headers are included in the project (despite them being added as source files in CMake).
- None of the included Conan packages are available
- There is no Cuda features are enabled. AKA it has no understanding of Cuda types or Cuda keywords and the Cuda Debugger is disabled.
I know that the project is valid because if I run MSbuild.exe project.sln /P:Configuration=Release
in PowerShell the project builds just fine. It’s something about using the project in Visual Studio itself.
Any help would be appreciated.