2022年1月8日
摘要: 1.设置第三方库路径 SET(INC_DIR "usr/local/include/") SET(LINK_DIR "usr/local/lib") 2.设置头文件搜索路径 include_directories(${INC_DIR}) 3.指定要链接的路径 link_directories(${L 阅读全文
posted @ 2022-01-08 14:40 D社长 阅读(1745) 评论(0) 推荐(0)
  2021年12月22日
摘要: const char* LogLevel:: Tostring(LogLevel::Level level) { switch(level) { #define XX(name) \ case LogLevel::name: \ return #name; \ break; XX(DEBUG); X 阅读全文
posted @ 2021-12-22 23:24 D社长 阅读(97) 评论(0) 推荐(0)