diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2018-01-18 21:05:59 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2018-01-30 14:14:02 (GMT) |
commit | fa583869f7e75cdc4c7499f0dbfab2cdac5061bd (patch) | |
tree | 325e7e091628ed0e901a800d2ceb5f99cf7a299a /Tests/Cuda/ObjectLibrary/main.cpp | |
parent | 142938225e572d846c956f9b1f54d24a960379ab (diff) | |
download | CMake-fa583869f7e75cdc4c7499f0dbfab2cdac5061bd.zip CMake-fa583869f7e75cdc4c7499f0dbfab2cdac5061bd.tar.gz CMake-fa583869f7e75cdc4c7499f0dbfab2cdac5061bd.tar.bz2 |
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.
Diffstat (limited to 'Tests/Cuda/ObjectLibrary/main.cpp')
-rw-r--r-- | Tests/Cuda/ObjectLibrary/main.cpp | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Tests/Cuda/ObjectLibrary/main.cpp b/Tests/Cuda/ObjectLibrary/main.cpp index 4d2f890..e28f088 100644 --- a/Tests/Cuda/ObjectLibrary/main.cpp +++ b/Tests/Cuda/ObjectLibrary/main.cpp @@ -1,22 +1,18 @@ #include <iostream> -int static_func(int); -int file1_sq_func(int); +int cpp_sq_func(int); +int cu1_sq_func(int); +int cu2_sq_func(int); -int test_functions() +bool test_functions() { - return file1_sq_func(static_func(42)); + return (cu1_sq_func(42) == cpp_sq_func(42)) && + (cu2_sq_func(42) == cpp_sq_func(42)); } int main(int argc, char** argv) { - if (test_functions() == 1) { - return 1; - } - std::cout - << "this executable doesn't use cuda code, just call methods defined" - << std::endl; - std::cout << "in object files that have cuda code" << std::endl; - return 0; + int result = test_functions() ? 0 : 1; + return result; } |