CMake/Tests/CustomTransitiveProperties/main10.c
Brad King 419c19d531 Tests: Extend CustomTransitiveProperties with custom transitive LINK_LIBRARIES
Demonstrate presence of extra entries due to not always avoiding repeat
visits.
2025-02-23 08:28:32 -05:00

8 lines
108 B
C

extern int static10(void);
extern int static11(void);
int main(void)
{
return static10() + static11();
}