cmake/Help/command/link_directories.rst

20 lines
694 B
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
link_directories
----------------
Specify directories in which the linker will look for libraries.
::
link_directories(directory1 directory2 ...)
Specify the paths in which the linker should search for libraries.
The command will apply only to targets created after it is called.
Relative paths given to this command are interpreted as relative to
2015-11-17 17:22:37 +01:00
the current source directory, see :policy:`CMP0015`.
2014-08-03 19:52:23 +02:00
Note that this command is rarely necessary. Library locations
2015-11-17 17:22:37 +01:00
returned by :command:`find_package` and :command:`find_library` are
absolute paths. Pass these absolute library file paths directly to the
:command:`target_link_libraries` command. CMake will ensure the linker finds
2014-08-03 19:52:23 +02:00
them.