赞
踩
cmake .. && make -j
CMakeLists.txt
文件,点击spdlog 的 CMake 设置
生成
,会报错 错误 LNK1168 无法打开 example\example.exe 进行写入
sudo make install
CMakeLists.txt
,点击 安装
即可。out/install
中CMakeLists.txt
和 cmake_demo.cpp
文件中引入并使用 SPDLOGcmake_minimum_required (VERSION 3.8)
project ("cmake_demo")
find_package(spdlog REQUIRED)
add_executable (cmake_demo cmake_demo.cpp)
target_link_libraries(cmake_demo PRIVATE spdlog::spdlog)
#include "spdlog/spdlog.h"
int main()
{
//Use the default logger (stdout, multi-threaded, colored)
spdlog::info("Hello, {}!", "World");
}
CMakeSettings.json
配置一些信息,如 spdlog 的路径。生成
即可Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。