Skip to content

Commit e54426d

Browse files
committed
Fix lower case option
1 parent 6305dbf commit e54426d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ string(TOLOWER "${LOG_LEVEL}" LOG_LEVEL_LOWER)
6161
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER)
6262

6363
if(LOG_LEVEL_LOWER STREQUAL "default")
64-
if(CMAKE_BUILD_TYPE_LOWER MATCHES "Debug")
64+
if(CMAKE_BUILD_TYPE_LOWER MATCHES "debug")
6565
message(STATUS "LOG_LEVEL is not set, use DEBUG as default for debug build")
6666
add_compile_definitions(LOGLEVEL=6)
6767
else()

0 commit comments

Comments
 (0)