我在 CLion 中包含了 spdlog 头文件,并且代码成功运行,但 CLion 不断报告错误

I included the spdlog header file in CLion, and the code runs successfully, but CLion keeps reporting errors

提问人:sky 提问时间:11/17/2023 最后编辑:Botjesky 更新时间:11/17/2023 访问量:36

问:

我在 Windows 11 系统上使用 WSL 作为我的环境,并直接在默认环境中安装了 libspdlog-dev 包。我已经成功地在 CLion 的 CMakeLists 中找到了 spdlog 包,并且可以在代码中成功调用它。但是,每当我在代码中包含此头文件时,它都会生成错误。虽然它不会影响程序的执行,但我想消除所有错误。非常感谢任何可以帮助我的人。

错误

find_package(spdlog  REQUIRED )
target_link_libraries(${PROJECT_NAME} PUBLIC spdlog::spdlog)

我试过或,但它不起作用#include "spdlog/spdlog.h"#include <spdlog/spdlog.h>

C CLION(C++ 克利昂)

评论

2赞 Botje 11/17/2023
澄清一下 - 这些错误来自 CLion 的代码完成,但程序在其他方面正确构建?
0赞 sky 11/17/2023
我可以成功编译和运行,但在 Windows 上,与此库相关的部分以红色突出显示

答: 暂无答案