cmake_minimum_required(VERSION 3.20)

project(hello CXX)

include(log/log.cmake)
message(${log_sources})
add_executable(hello hello.cpp ${log_sources})

