CMake/Tests/RunCMake/ObjectLibrary/depends_main.c

8 lines
76 B
C

extern void mylib_foo(void);
int main(void)
{
mylib_foo();
return 0;
}