feat: 添加conan包构建测试

This commit is contained in:
2025-11-07 22:12:45 +08:00
parent 0aa3bf3473
commit c7a647f48a
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.28...3.30)
project(LoggingTest)
find_package(logging CONFIG REQUIRED)
#测试简单基本应用
add_executable(${PROJECT_NAME} src/testExmaple.c)
target_link_libraries(${PROJECT_NAME} logging::logging)