mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-31 05:14:18 +00:00
Add the test case from commit bab24e782c (target_link_libraries: Propagate dependencies of object libraries, 2018-12-10, v3.14.0-rc1~260^2) to the main ObjectLibrary test.
8 lines
112 B
C
8 lines
112 B
C
extern int FooObject(void);
|
|
extern int FooStatic(void);
|
|
|
|
int main(void)
|
|
{
|
|
return FooObject() + FooStatic();
|
|
}
|