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:
Robert Maynard
2018-01-18 16:05:59 -05:00
parent 142938225e
commit fa583869f7
7 changed files with 51 additions and 26 deletions
+2 -2
View File
@@ -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;
}