summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/SeparableCompCXXOnly
Commit message (Collapse)AuthorAgeFilesLines
* Revise C++ coding style using clang-format-15Kitware Robot2023-01-181-1/+1
| | | | | | | | | | | | | | Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`. Use `clang-format` version 15. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Fixes: #24315
* CMakeParseImplicitLinkInfo: Better detection of msvcRobert Maynard2022-09-021-1/+4
| | | | Use the compiler id information in addition to checking for `cl.exe`.
* CUDA: Do not device link if target has no CUDA usageRobert Maynard2020-01-092-0/+8
When CUDA is enabled, and a pure non-CUDA target has CMAKE_CUDA_SEPARABLE_COMPILATION enabled, don't actually perform the device linking step, as it will fail. A target that has CMAKE_CUDA_SEPARABLE_COMPILATION enabled must also have CUDA usage (either itself, or something it links to). Fixes: #20182