mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
2d7bb13da7
Previously the CMake didn't compute the required set of libraries needed to properly device link a static library when CUDA_RESOLVE_DEVICE_SYMBOLS was enabled.
11 lines
106 B
C
11 lines
106 B
C
|
|
#pragma once
|
|
|
|
struct result_type
|
|
{
|
|
int input;
|
|
int sum;
|
|
};
|
|
|
|
result_type __device__ file1_func(int x);
|