TARGET_LINK_LIBRARIES: Link a target to given libraries.
TARGET_LINK_LIBRARIES(target library1
<debug | optimized> library2
...)
Specify a list of libraries to be linked into the specified target. 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
为所有目标统一指定需要的库文件(指定所有目标都用的库文件)
LINK_LIBRARIES: Link libraries to all targets added later.
LINK_LIBRARIES(library1 <debug | optimized> library2 ...)
This is an old CMake command for linking libraries. Use TARGET_LINK_LIBRARIES unless you have a good reason for every target to link to the same set of libraries.
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.
本文介绍了CMake中用于链接库文件的两种主要指令:TARGET_LINK_LIBRARIES和LINK_LIBRARIES。TARGET_LINK_LIBRARIES允许为特定目标指定库文件,而LINK_LIBRARIES则为所有后续目标统一设置库文件。文章详细解释了这两种指令的使用方法及其参数选项。
454

被折叠的 条评论
为什么被折叠?



