mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
Link line construction starts with `LINK_LIBRARIES` and appends dependencies from the transitive closure of `INTERFACE_LINK_LIBRARIES`. Only the entries of `LINK_LIBRARIES` are considered direct link dependencies. In some advanced use cases, particularly involving static libraries and static plugins, usage requirements need to update the list of direct link dependencies. This may mean adding new items, removing existing items, or both. Add target properties to encode these usage requirements: * INTERFACE_LINK_LIBRARIES_DIRECT * INTERFACE_LINK_LIBRARIES_DIRECT_EXCLUDE Fixes: #22496
24 lines
582 B
C
24 lines
582 B
C
#ifdef DEF_DIRECT_FROM_A
|
|
# error "DEF_DIRECT_FROM_A incorrectly defined"
|
|
#endif
|
|
#ifdef DEF_DIRECT_FROM_A_FOR_EXE
|
|
# error "DEF_DIRECT_FROM_A_FOR_EXE incorrectly defined"
|
|
#endif
|
|
#ifdef DEF_DIRECT_FROM_A_OPTIONAL
|
|
# error "DEF_DIRECT_FROM_A_OPTIONAL incorrectly defined"
|
|
#endif
|
|
|
|
extern void static_A_private(void);
|
|
extern void not_direct_from_A(void);
|
|
extern void not_direct_from_A_for_exe(void);
|
|
extern void not_direct_from_A_optional(void);
|
|
|
|
int main(void)
|
|
{
|
|
static_A_private();
|
|
not_direct_from_A();
|
|
not_direct_from_A_for_exe();
|
|
not_direct_from_A_optional();
|
|
return 0;
|
|
}
|