Files
CMake/Tests/CudaOnly/SeparateCompilationTargetObjects/main.cu
T
2024-01-18 14:27:29 -05:00

14 lines
177 B
Plaintext

#ifdef _WIN32
# define IMPORT __declspec(dllimport)
#else
# define IMPORT
#endif
IMPORT int foo();
IMPORT int bar();
int main(int argc, char**)
{
return foo() && bar();
}