其实private/public 解决的是指示问题,本质上可以使用public 来解决, 可以减少坑。 下面是target_link_libraries中的解释,不想看英文的,直接拉到最后。 Link Inheritance Similarly, for anytarget, in the linking stage, we would need to decide, given theitemto be linked, whether we have to put theitemi...
如果目标的头文件中包含了依赖的头文件(源文件间接包含),那么这里就是PUBLIC 如果目标仅源文件中包含了依赖的头文件,那么这里就是PRIVATE 如果目标的头文件包含依赖,但源文件未包含,那么这里就是INTERFACE https://cmake.org/cmake/help/v3.0/manual/cmake-buildsystem.7.html#transitive-usage-requirements...
target_link_libraries(sample_add add_shared) # 若注释掉此句,则会报 error: sample_add.cpp:(.text+0x25): undefined reference to 'add(int, int)' 1. 2. 3. 4. 5. 6. 7. 8. 2.Libraries for a Target and/or its Dependents:PUBLIC, PRIVATE和INTERFACE关键字可用于在一个命令中指定link de...
target_link_libraries(hello-world INTERFACE hello) target_include_directories(hello-world INTERFACE hello) PUBLIC:公开的。PUBLIC = PRIVATE + INTERFACE。生成 libhello-world.so 时,在 hello_world.c 和 hello_world.h 中都包含了 hello.h。并且 main.c 中也需要使用 libhello.so 提供的功能。那么在 hel...
target_link_libraries(bar PUBLIC foo)链接为public,main函数正常调用foo(),bar中正常调用foo(),库foo链接给bar,同时foo也被传给了main。 target_link_libraries(bar PRIVATE foo)编译,发现main.cpp: undefined reference to `foo()',main.cpp这个编译单元找不到foo()这个符号,库foo链接到bar就被终结了,bar自...
原文: CMake target_link_libraries Interface Dependencies http://stackoverflow.com/questions/26037954/cmake-target-link-libraries-interface-dependencies If you are creating a shared library ...
target_link_libraries(hello-world INTERFACE hello) target_include_directories(hello-world INTERFACE hello) 1. 2. PUBLIC:公开的。PUBLIC = PRIVATE + INTERFACE。生成 libhello-world.so 时,在 hello_world.c 和 hello_world.h 中都包含了 hello.h。并且 main.c 中也需要使用 libhello.so 提供的功能。
target_link_libraries(<target><PRIVATE|PUBLIC|INTERFACE><item>... [<PRIVATE|PUBLIC|INTERFACE><item>...]...) PRIVATE: 被依赖 libary 的 user requirement 的会变成当前 target 的 build requirement PUBLIC:被依赖 libary 的 user requirement 的会变成当前 target 的 build requirement 和 user requirement...
target_link_libraries(HelloWorld PRIVATE fmt::fmt):指定HelloWorld可执行文件应链接到fmt库。PRIVATE关键字表明fmt仅在生成HelloWorld时需要,不应传播到其他依赖项目。 创建包含以下内容的helloworld.cpp文件: C++ #include<fmt/core.h>intmain(){ fmt::print("Hello World!\n");return0; } ...
target_link_libraries(<target><LINK_PRIVATE|LINK_PUBLIC> <lib>...[<LINK_PRIVATE|LINK_PUBLIC> <lib>...]...) LINK_PUBLIC 和 LINK_PRIVATE 模式可用于在一个命令中指定链接依赖关系和链接接口。 此签名仅用于兼容性。请改用 PUBLIC 或 PRIVATE 关键字。