diff --git a/cmake/01-core.cmake b/cmake/01-core.cmake index 973c4b7d..87985f44 100644 --- a/cmake/01-core.cmake +++ b/cmake/01-core.cmake @@ -13,8 +13,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # Set default build type if not specified if(NOT CMAKE_BUILD_TYPE) - message_colored(STATUS "No build type specified; using RelWithDebInfo" 33) - set(CMAKE_BUILD_TYPE "RelWithDebInfo") + set(CMAKE_BUILD_TYPE "Release") + message_colored(STATUS "No build type specified; using ${CMAKE_BUILD_TYPE}" 33) endif() string(TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_UPPER)