cmake_minimum_required(VERSION 3.20)

project(hello CXX)

add_subdirectory(log)

add_executable(hello hello.cpp)
# 链接 log_lib (源文件链接) 
target_link_libraries(hello PUBLIC log_lib)


