2014-08-03 19:52:23 +02:00
|
|
|
link_libraries
|
|
|
|
--------------
|
|
|
|
|
|
|
|
Link libraries to all targets added later.
|
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
.. code-block:: cmake
|
2014-08-03 19:52:23 +02:00
|
|
|
|
2015-04-27 22:25:09 +02:00
|
|
|
link_libraries([item1 [item2 [...]]]
|
|
|
|
[[debug|optimized|general] <item>] ...)
|
|
|
|
|
|
|
|
Specify libraries or flags to use when linking any targets created later in
|
|
|
|
the current directory or below by commands such as :command:`add_executable`
|
|
|
|
or :command:`add_library`. See the :command:`target_link_libraries` command
|
|
|
|
for meaning of arguments.
|
2014-08-03 19:52:23 +02:00
|
|
|
|
2015-04-27 22:25:09 +02:00
|
|
|
.. note::
|
|
|
|
The :command:`target_link_libraries` command should be preferred whenever
|
|
|
|
possible. Library dependencies are chained automatically, so directory-wide
|
|
|
|
specification of link libraries is rarely needed.
|