Revision 922f47979afd8bee43f6810c53146aa6d34b44ab authored by Brad King on 03 June 2014, 13:30:39 UTC, committed by Brad King on 03 June 2014, 13:30:39 UTC
2 parent s 910849d + 8da0a75
Raw File
link_libraries.rst
link_libraries
--------------

Deprecated. Use the target_link_libraries() command instead.

Link libraries to all targets added later.

::

  link_libraries(library1 <debug | optimized> library2 ...)

Specify a list of libraries to be linked into any following targets
(typically added with the add_executable or add_library calls).  This
command is passed down to all subdirectories.  The debug and optimized
strings may be used to indicate that the next library listed is to be
used only for that specific type of build.
back to top