提问人:sky 提问时间:11/17/2023 最后编辑:Botjesky 更新时间:11/17/2023 访问量:36
我在 CLion 中包含了 spdlog 头文件,并且代码成功运行,但 CLion 不断报告错误
I included the spdlog header file in CLion, and the code runs successfully, but CLion keeps reporting errors
问:
我在 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>
答: 暂无答案
评论