
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
22 lines
360 B
C
22 lines
360 B
C
extern int testExePluginHelperObj(int n);
|
|
|
|
#ifdef testExePluginHelperObj_NO_OBJECT
|
|
int testExePluginHelperObj(int n)
|
|
{
|
|
return n;
|
|
}
|
|
#endif
|
|
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
int testExePluginAPI(int n);
|
|
|
|
#if defined(_WIN32)
|
|
__declspec(dllexport)
|
|
#endif
|
|
int testExePlugin(int n)
|
|
{
|
|
return testExePluginAPI(n) + testExePluginHelperObj(n);
|
|
}
|