Commit 1bee3218 authored by steven lunt's avatar steven lunt

cleanup thanks to gabime

parent 802eaadd
...@@ -238,27 +238,14 @@ endif() ...@@ -238,27 +238,14 @@ endif()
# --------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------
# Allow override of level names # Allow override of level names
# --------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------
if(NOT SPDLOG_LEVEL_NAME_TRACE) set(SPDLOG_LEVEL_NAME_TRACE "trace" CACHE STRING "custom level name")
set(SPDLOG_LEVEL_NAME_TRACE trace) set(SPDLOG_LEVEL_NAME_DEBUG "debug" CACHE STRING "custom level name")
endif() set(SPDLOG_LEVEL_NAME_INFO "info" CACHE STRING "custom level name")
if(NOT SPDLOG_LEVEL_NAME_DEBUG) set(SPDLOG_LEVEL_NAME_WARNING "warning" CACHE STRING "custom level name")
set(SPDLOG_LEVEL_NAME_DEBUG debug) set(SPDLOG_LEVEL_NAME_ERROR "error" CACHE STRING "custom level name")
endif() set(SPDLOG_LEVEL_NAME_CRITICAL "critical" CACHE STRING "custom level name")
if(NOT SPDLOG_LEVEL_NAME_INFO) set(SPDLOG_LEVEL_NAME_OFF "off" CACHE STRING "custom level name")
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()
target_compile_definitions(spdlog PUBLIC SPDLOG_LEVEL_NAME_TRACE=\"${SPDLOG_LEVEL_NAME_TRACE}\") 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_DEBUG=\"${SPDLOG_LEVEL_NAME_DEBUG}\")
target_compile_definitions(spdlog PUBLIC SPDLOG_LEVEL_NAME_INFO=\"${SPDLOG_LEVEL_NAME_INFO}\") target_compile_definitions(spdlog PUBLIC SPDLOG_LEVEL_NAME_INFO=\"${SPDLOG_LEVEL_NAME_INFO}\")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment