From 9858f2e4997459c1b3961fdb1d154591470195b7 Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 23 Mar 2019 17:25:50 +0200 Subject: [PATCH] renamed --- lite-example/create_lite.cpp | 2 +- lite-example/example.cpp | 2 +- lite/CMakeLists.txt | 2 +- lite/{logger.cpp => spdlite.cpp} | 2 +- lite/{logger.h => spdlite.h} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename lite/{logger.cpp => spdlite.cpp} (99%) rename lite/{logger.h => spdlite.h} (100%) diff --git a/lite-example/create_lite.cpp b/lite-example/create_lite.cpp index 5345237f..beea64ba 100644 --- a/lite-example/create_lite.cpp +++ b/lite-example/create_lite.cpp @@ -1,4 +1,4 @@ -#include "logger.h" +#include "spdlite.h" #include "spdlog/spdlog.h" spdlog::lite::logger spdlog::create_lite(void *ctx) diff --git a/lite-example/example.cpp b/lite-example/example.cpp index 376d9a68..82ddef93 100644 --- a/lite-example/example.cpp +++ b/lite-example/example.cpp @@ -1,5 +1,5 @@ #define SPDLITE_ACTIVE_LEVEL SPDLITE_LEVEL_INFO -#include "logger.h" +#include "spdlite.h" int main() { diff --git a/lite/CMakeLists.txt b/lite/CMakeLists.txt index 3ed30be7..ee8a4aab 100644 --- a/lite/CMakeLists.txt +++ b/lite/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1) project(spdlog_lite) -add_library(spdlog_lite logger.cpp) +add_library(spdlog_lite spdlite.cpp) target_link_libraries(spdlog_lite spdlog::spdlog) diff --git a/lite/logger.cpp b/lite/spdlite.cpp similarity index 99% rename from lite/logger.cpp rename to lite/spdlite.cpp index 0cbe766f..043bd1c8 100644 --- a/lite/logger.cpp +++ b/lite/spdlite.cpp @@ -1,4 +1,4 @@ -#include "logger.h" +#include "spdlite.h" #include "spdlog/spdlog.h" #include "spdlog/logger.h" diff --git a/lite/logger.h b/lite/spdlite.h similarity index 100% rename from lite/logger.h rename to lite/spdlite.h