https://github.com/Kitware/CMake
Raw File
Tip revision: 6218aba37ad9990304f91bf6c27e014fbf8ad684 authored by David Cole on 18 April 2012, 16:03:39 UTC
CMake 2.8.8
Tip revision: 6218aba
foobar.c
#ifdef _WIN32
__declspec(dllimport) 
#endif
extern  void bar();

int main()
{
  bar();
  return 0;
}
back to top