AUI Framework
develop
Cross-platform base for C++ UI apps
|
Alias to target_link_libraries with additional rules (see below)
In contrast to target_link_libraries
, the only one syntax variant is allowed.
The PUBLIC
, PRIVATE
and INTERFACE
scope keywords can be used to specify both the link dependencies and the link interface in one command.
Libraries and targets following PUBLIC
are linked to, and are made part of the link interface. Libraries and targets following PRIVATE
are linked to, but are not made part of the link interface. Libraries following INTERFACE
are appended to the link interface and are not used for linking <target>
.
If building with BUILD_SHARED_LIBS=OFF
, the following rules apply:
PUBLIC
to propagate static libraries up to the executable.<item>
s with INTERFACE_AUI_WHOLEARCHIVE=TRUE
are wrapped with compiler-specific flags during linkage to enable whole archive linking (i.e., forbid dropping of unused symbols). This is essential when linking to binaries with AUI assets.The <item>
s are reordered this way: from the most dependant target to the less dependant target.
If A depends on B; C depends on both A and B, you should write
and not
Contents