Merge topic 'doc-link_libraries-note'
c7310917
Help: Clarify status of link_libraries command
This commit is contained in:
commit
095fc28a7e
|
@ -1,16 +1,19 @@
|
||||||
link_libraries
|
link_libraries
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
Deprecated. Use the target_link_libraries() command instead.
|
|
||||||
|
|
||||||
Link libraries to all targets added later.
|
Link libraries to all targets added later.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
link_libraries(library1 <debug | optimized> library2 ...)
|
link_libraries([item1 [item2 [...]]]
|
||||||
|
[[debug|optimized|general] <item>] ...)
|
||||||
|
|
||||||
Specify a list of libraries to be linked into any following targets
|
Specify libraries or flags to use when linking any targets created later in
|
||||||
(typically added with the add_executable or add_library calls). This
|
the current directory or below by commands such as :command:`add_executable`
|
||||||
command is passed down to all subdirectories. The debug and optimized
|
or :command:`add_library`. See the :command:`target_link_libraries` command
|
||||||
strings may be used to indicate that the next library listed is to be
|
for meaning of arguments.
|
||||||
used only for that specific type of build.
|
|
||||||
|
.. 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.
|
||||||
|
|
|
@ -68,6 +68,7 @@ These commands may be used freely in CMake projects.
|
||||||
/command/include
|
/command/include
|
||||||
/command/install
|
/command/install
|
||||||
/command/link_directories
|
/command/link_directories
|
||||||
|
/command/link_libraries
|
||||||
/command/list
|
/command/list
|
||||||
/command/load_cache
|
/command/load_cache
|
||||||
/command/load_command
|
/command/load_command
|
||||||
|
@ -118,7 +119,6 @@ versions of CMake. Do not use them in new code.
|
||||||
/command/install_files
|
/command/install_files
|
||||||
/command/install_programs
|
/command/install_programs
|
||||||
/command/install_targets
|
/command/install_targets
|
||||||
/command/link_libraries
|
|
||||||
/command/make_directory
|
/command/make_directory
|
||||||
/command/output_required_files
|
/command/output_required_files
|
||||||
/command/remove
|
/command/remove
|
||||||
|
|
Loading…
Reference in New Issue