Remove debug logs from Windows builds
This commit is contained in:
parent
748c5898be
commit
f58cbd7281
@ -122,11 +122,16 @@ else(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
|
||||
message("Build type set to '${CMAKE_BUILD_TYPE}'")
|
||||
endif(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
|
||||
|
||||
set(SPDLOG_DEBUG_ON false)
|
||||
|
||||
# Windows doesn't handle CMAKE_BUILD_TYPE.
|
||||
if(NOT WIN32)
|
||||
if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
|
||||
set(SPDLOG_DEBUG_ON true)
|
||||
else()
|
||||
set(SPDLOG_DEBUG_ON false)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_program(GIT git)
|
||||
if(GIT)
|
||||
|
Loading…
Reference in New Issue
Block a user