diff options
author | crupest <crupest@outlook.com> | 2020-05-24 01:40:02 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-05-24 01:40:02 +0800 |
commit | d86a71f79afe0e4dac768f61d6bff690567aca5b (patch) | |
tree | 4957e9a64c77680deb07201fbd879bf036616dae /src/common | |
parent | f3a8fd608a9776ef0a5f547da918a32cf6074060 (diff) | |
download | cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.gz cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.bz2 cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.zip |
...
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/CMakeLists.txt | 14 | ||||
-rw-r--r-- | src/common/logger.cpp | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 43d1dedb..d53b9740 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,14 +1,14 @@ set(CRU_BASE_INCLUDE_DIR ${CRU_INCLUDE_DIR}/cru/common) add_library(cru_base STATIC - logger.cpp + Logger.cpp ) target_sources(cru_base PUBLIC - ${CRU_BASE_INCLUDE_DIR}/base.hpp - ${CRU_BASE_INCLUDE_DIR}/bitmask.hpp - ${CRU_BASE_INCLUDE_DIR}/event.hpp - ${CRU_BASE_INCLUDE_DIR}/logger.hpp - ${CRU_BASE_INCLUDE_DIR}/pre_config.hpp - ${CRU_BASE_INCLUDE_DIR}/self_resolvable.hpp + ${CRU_BASE_INCLUDE_DIR}/Base.hpp + ${CRU_BASE_INCLUDE_DIR}/Bitmask.hpp + ${CRU_BASE_INCLUDE_DIR}/Event.hpp + ${CRU_BASE_INCLUDE_DIR}/Logger.hpp + ${CRU_BASE_INCLUDE_DIR}/PreConfig.hpp + ${CRU_BASE_INCLUDE_DIR}/SelfResolvable.hpp ) target_include_directories(cru_base PUBLIC ${CRU_INCLUDE_DIR}) target_compile_definitions(cru_base PUBLIC $<$<CONFIG:Debug>:CRU_DEBUG>) diff --git a/src/common/logger.cpp b/src/common/logger.cpp index 97599b0a..ed9f9e64 100644 --- a/src/common/logger.cpp +++ b/src/common/logger.cpp @@ -1,4 +1,4 @@ -#include "cru/common/logger.hpp" +#include "cru/common/Logger.hpp" #include <array> #include <cstdlib> |