# spdlog_wrapper **Repository Path**: bigbear2021/spdlog_wrapper ## Basic Information - **Project Name**: spdlog_wrapper - **Description**: This is a logging library built on/wrapping spdlog.​ - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-07 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Introduction Spdlog_wrapper offers some custom loggers based on spdlog. # Development - Prerequisites 1. LLVM Tool Chain(Windows: LLVM-MinGW) 2. Conan - Open a terminal and enter project root directory - Run the command: ``` # If want to build the unit tests # conan install . -o with_test=True -pr=profiles/clang-libc++ # conan build . -o with_test=True -pr=profiles/clang-libc++ conan install . -pr=profiles/clang-libc++ --build=missing conan build . -pr=profiles/clang-libc++ ``` Note: If you change the configurations, please delete CMakeCache.txt to recompile codes. # Package ``` conan create . --build=missing -pr=profiles/clang-libc++ ``` # Publish ``` # conan is my artifactory repository name conan upload spdlog_wrapper/0.1.1 -r conan ```