mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
16 lines
170 B
Plaintext
16 lines
170 B
Plaintext
|
|
#include <cuda.h>
|
|
|
|
#ifdef _WIN32
|
|
# define IMPORT __declspec(dllimport)
|
|
#else
|
|
# define IMPORT
|
|
#endif
|
|
|
|
IMPORT int simplelib();
|
|
|
|
int main(void)
|
|
{
|
|
return simplelib();
|
|
}
|