gpt4 book ai didi

CMake 错误 "Can not find target to add properties to"

转载 作者:行者123 更新时间:2023-12-04 15:28:06 25 4
gpt4 key购买 nike

在我的 CMakeLIsts.txt 文件中,我这样写:

set(LIBHELLO_SRC hello.c)
set_target_properties(hello_static PROPERTIES OUTPUT_NAME "hello")
get_target_property(OUTPUT_VALUE hello_static OUTPUT_NAME)
message(STATUS "This is the hello_static OUTPUT_NAME:"${OUTPUT_VALUE})

当我跑 cmake ,它显示错误消息:
set_target_properties Can not find target to add properties to: hello_static

最佳答案

为了让您的代码正常工作,hello_static必须是 CMake 目标的名称;通过 add_executable 添加的东西或 add_library 例如命令。

这与您的项目名称无关。

看起来您缺少以下内容:

add_library(hello_static ${LIBHELLO_SRC})

将在之后立即放置
set(LIBHELLO_SRC hello.c)

关于CMake 错误 "Can not find target to add properties to",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15110336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com