mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
CUDA: Use MSVC default pattern for naming object files
The default that CUDA uses causes failures when you try to embed CUDA obj's into another target.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
int file1_sq_func(int);
|
||||
|
||||
int static_func(int x)
|
||||
int cpp_sq_func(int x)
|
||||
{
|
||||
return file1_sq_func(x);
|
||||
return x * x;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user