https://github.com/Kitware/CMake
Raw File
Tip revision: 0b3781e4c497566acaa504d4106d11c02a642501 authored by Brad King on 16 January 2014, 14:31:28 UTC
CMake 2.8.12.2
Tip revision: 0b3781e
foobar.c
#ifdef _WIN32
__declspec(dllimport)
#endif
extern  void bar();

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