Compare commits
2 Commits
311e60e973
...
c7a647f48a
| Author | SHA1 | Date | |
|---|---|---|---|
| c7a647f48a | |||
| 0aa3bf3473 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
|||||||
.vscode/**
|
.vscode/**
|
||||||
bin
|
bin
|
||||||
build
|
build
|
||||||
|
CMakeUserPresets.json
|
||||||
@@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.28...3.30)
|
|||||||
project(logging)
|
project(logging)
|
||||||
|
|
||||||
set(CMAKE_C_STANDARD 99)
|
set(CMAKE_C_STANDARD 99)
|
||||||
set(CMAKE_C_CLANG_TIDY "clang-tidy")
|
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
add_compile_options("/source-charset:utf-8")
|
add_compile_options("/source-charset:utf-8")
|
||||||
|
|||||||
9
test_package/CMakeLists.txt
Normal file
9
test_package/CMakeLists.txt
Normal 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)
|
||||||
26
test_package/conanfile.py
Normal file
26
test_package/conanfile.py
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from conan import ConanFile
|
||||||
|
from conan.tools.cmake import CMake, cmake_layout
|
||||||
|
from conan.tools.build import can_run
|
||||||
|
|
||||||
|
|
||||||
|
class LoggingTestConan(ConanFile):
|
||||||
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
|
generators = "CMakeDeps", "CMakeToolchain"
|
||||||
|
|
||||||
|
def requirements(self):
|
||||||
|
self.requires(self.tested_reference_str)
|
||||||
|
|
||||||
|
def build(self):
|
||||||
|
cmake = CMake(self)
|
||||||
|
cmake.configure()
|
||||||
|
cmake.build()
|
||||||
|
|
||||||
|
def layout(self):
|
||||||
|
cmake_layout(self)
|
||||||
|
|
||||||
|
def test(self):
|
||||||
|
if can_run(self):
|
||||||
|
cmd = os.path.join(self.cpp.build.bindir, "LoggingTest")
|
||||||
|
self.run(cmd, env="conanrun")
|
||||||
12
test_package/src/testExmaple.c
Normal file
12
test_package/src/testExmaple.c
Normal 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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user