CMake Error at data-plane/suricata-3.0/src/CMakeLists.txt:686 (TARGET_LINK_LIBRARIES): IMPORTED library can only be used with the INTERFACE keyword of target_link_libraries CMake Error at data-plane/suricata-3.0/src/CMakeLists.txt:687 (target_include_directories): target_include_directories may only set INTERFACE properties on IMPORTED targets
时间: 2024-03-14 10:48:33 浏览: 411
这个错误提示的意思是,在 `data-plane/suricata-3.0/src/CMakeLists.txt` 文件的第 686 行,使用了 `TARGET_LINK_LIBRARIES` 命令指定了一个 `IMPORTED` 库进行链接。然而,`IMPORTED` 库只能和 `INTERFACE` 关键字一起使用,而不能直接和 `TARGET_LINK_LIBRARIES` 命令一起使用。在第 687 行,使用了 `target_include_directories` 命令对一个 `IMPORTED` 目标设置了 `INTERFACE` 属性,然而这也是不正确的。
要解决这个问题,可以将 `TARGET_LINK_LIBRARIES` 命令改为使用 `INTERFACE` 关键字。例如:
```
target_link_libraries(your_target_name INTERFACE imported_library_name)
```
另外,对于 `IMPORTED` 目标,应该使用 `INTERFACE` 属性来设置其包含目录。例如:
```
set_target_properties(imported_library_name PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "/path/to/include/dir")
```
注意,这里需要将 `IMPORTED` 目标的名称替换为你实际使用的目标名称,以及将 `/path/to/include/dir` 替换为实际的包含目录路径。
相关问题
CMake Error at data-plane/suricata-3.0/src/CMakeLists.txt:685 (ADD_LIBRARY): ADD_LIBRARY called with IMPORTED argument but no library type. CMake Error at data-plane/suricata-3.0/src/CMakeLists.txt:686 (TARGET_LINK_LIBRARIES): Cannot specify link libraries for target "nanomsg" which is not built by this project.
这个错误提示的意思是,在 `data-plane/suricata-3.0/src/CMakeLists.txt` 文件的第 685 行,使用了 `ADD_LIBRARY` 命令,但是没有指定库的类型。通常情况下,需要在 `ADD_LIBRARY` 命令中指定库的类型,例如 `STATIC` 或 `SHARED`。
另外,在第 686 行,使用了 `TARGET_LINK_LIBRARIES` 命令指定了一个名为 `nanomsg` 的库进行链接。然而,这个库并不是由当前项目构建的,因此无法进行链接。如果要链接外部库,需要使用 `find_package` 命令或者 `find_library` 命令找到该库,并将其导入到当前项目中。
要解决这个问题,可以检查 `ADD_LIBRARY` 命令的语法是否正确,并且确保引用的外部库已经成功导入到当前项目中。
CMake Error at data-plane/suricata-3.0/src/CMakeLists.txt:548 (TARGET_LINK_LIBRARIES): The keyword signature for target_link_libraries has already been used with the target "dp". All uses of target_link_libraries with a target must be either all-keyword or all-plain. The uses of the keyword signature are here: * data-plane/suricata-3.0/src/CMakeLists.txt:542 (TARGET_LINK_LIBRARIES)
这个错误是由于同一个目标 "dp" 在 CMakeLists.txt 文件的不同位置使用了不同的 target_link_libraries 形式。在这种情况下,你需要确保在该文件中所有使用 "dp" 的 target_link_libraries 调用都采用相同的语法形式,要么全部使用关键字形式,要么全部使用普通形式。
在你的情况中,可以查看 CMakeLists.txt 文件中第 542 行和第 548 行的 target_link_libraries 调用,并确保它们采用相同的语法形式。如果它们是不同的,则需要进行更改以使其匹配。例如,如果第 542 行使用了关键字形式,则第 548 行也应该使用关键字形式。
阅读全文