summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/target_link_libraries-LINK_GROUP/lib.c
blob: 21f559cad1bc6aa17dc7cb0255393b674806da03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#if !defined(STATIC_BASE)
#  if defined(_WIN32)
__declspec(dllimport)
#  endif
#endif
  void base(void);

#if defined(_WIN32)
__declspec(dllexport)
#endif
  void lib(void)
{
  base();
}