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,12 @@
#include "logging.h"
int main() {
Log_info("This is an info message");
Log_error("This is an error message%s", "123");
Log_fatal("This is an fatal message");
Log_debug("This is a debug message");
Log_warning("This is a warning message%s", "123");
loggingDestroyAll();
return 0;
}