mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 08:25:43 +08:00
cleanup thanks to gabime
This commit is contained in:
parent
802eaadd2d
commit
1bee3218b4
@ -238,27 +238,14 @@ endif()
|
||||
# ---------------------------------------------------------------------------------------
|
||||
# Allow override of level names
|
||||
# ---------------------------------------------------------------------------------------
|
||||
if(NOT SPDLOG_LEVEL_NAME_TRACE)
|
||||
set(SPDLOG_LEVEL_NAME_TRACE trace)
|
||||
endif()
|
||||
if(NOT SPDLOG_LEVEL_NAME_DEBUG)
|
||||
set(SPDLOG_LEVEL_NAME_DEBUG debug)
|
||||
endif()
|
||||
if(NOT SPDLOG_LEVEL_NAME_INFO)
|
||||
set(SPDLOG_LEVEL_NAME_INFO info)
|
||||
endif()
|
||||
if(NOT SPDLOG_LEVEL_NAME_WARNING)
|
||||
set(SPDLOG_LEVEL_NAME_WARNING warning)
|
||||
endif()
|
||||
if(NOT SPDLOG_LEVEL_NAME_ERROR)
|
||||
set(SPDLOG_LEVEL_NAME_ERROR error)
|
||||
endif()
|
||||
if(NOT SPDLOG_LEVEL_NAME_CRITICAL)
|
||||
set(SPDLOG_LEVEL_NAME_CRITICAL critical)
|
||||
endif()
|
||||
if(NOT SPDLOG_LEVEL_NAME_OFF)
|
||||
set(SPDLOG_LEVEL_NAME_OFF off)
|
||||
endif()
|
||||
set(SPDLOG_LEVEL_NAME_TRACE "trace" CACHE STRING "custom level name")
|
||||
set(SPDLOG_LEVEL_NAME_DEBUG "debug" CACHE STRING "custom level name")
|
||||
set(SPDLOG_LEVEL_NAME_INFO "info" CACHE STRING "custom level name")
|
||||
set(SPDLOG_LEVEL_NAME_WARNING "warning" CACHE STRING "custom level name")
|
||||
set(SPDLOG_LEVEL_NAME_ERROR "error" CACHE STRING "custom level name")
|
||||
set(SPDLOG_LEVEL_NAME_CRITICAL "critical" CACHE STRING "custom level name")
|
||||
set(SPDLOG_LEVEL_NAME_OFF "off" CACHE STRING "custom level name")
|
||||
|
||||
target_compile_definitions(spdlog PUBLIC SPDLOG_LEVEL_NAME_TRACE=\"${SPDLOG_LEVEL_NAME_TRACE}\")
|
||||
target_compile_definitions(spdlog PUBLIC SPDLOG_LEVEL_NAME_DEBUG=\"${SPDLOG_LEVEL_NAME_DEBUG}\")
|
||||
target_compile_definitions(spdlog PUBLIC SPDLOG_LEVEL_NAME_INFO=\"${SPDLOG_LEVEL_NAME_INFO}\")
|
||||
|
Loading…
Reference in New Issue
Block a user