mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 14:50:10 -06:00
16 lines
204 B
Plaintext
16 lines
204 B
Plaintext
#ifdef _WIN32
|
|
# define EXPORT __declspec(dllexport)
|
|
#else
|
|
# define EXPORT __attribute__((__visibility__("default")))
|
|
#endif
|
|
|
|
__global__ void k1()
|
|
{
|
|
}
|
|
|
|
EXPORT int foo()
|
|
{
|
|
k1<<<1, 1>>>();
|
|
return 0;
|
|
}
|