CMake/Tests/ExportImport/Export/testLibCycleB2.c
Brad King d259128894 Test link multiplicity export/import
We test that LINK_INTERFACE_MULTIPLICITY propagates through export() and
install(EXPORT) into dependent projects.  A simple cycle of two archives
that need to be scanned three times ensures that the importing project
uses the multiplicity correctly.
2009-09-01 10:38:36 -04:00

3 lines
87 B
C

extern int testLibCycleA3(void);
int testLibCycleB2(void) { return testLibCycleA3(); }