CMake/Tests/LibName/foobar.c

11 lines
112 B
C
Raw Normal View History

2006-11-30 01:45:55 +03:00
#ifdef _WIN32
__declspec(dllimport)
#endif
void bar();
int main(int ac, char** av)
{
bar();
return 0;
}