cmake/Tests/InterfaceLinkLibrariesDirect/testStaticLibPlugin.c

7 lines
186 B
C
Raw Normal View History

2022-08-04 22:12:04 +02:00
extern int testStaticLibWithPlugin1(void);
extern int testStaticLibPluginExtra(void);
int testStaticLibPlugin(void)
{
return testStaticLibWithPlugin1() + testStaticLibPluginExtra();
}