# 对象库只编译源文件，不会将生成的目标文件打包或链接为库
add_library(log_lib OBJECT src/log.cpp)
target_include_directories(log_lib PUBLIC include)
