CMake: only set "-O3 -g" defaults if CMAKE_BUILD_TYPE wasn't set at all.

This commit is contained in:
Ryan C. Gordon 2016-01-08 07:32:51 -05:00
parent 06129f6de9
commit 1615b2e29d

View file

@ -158,8 +158,10 @@ endif()
# Default flags, if not set otherwise
if("$ENV{CFLAGS}" STREQUAL "")
if(USE_GCC OR USE_CLANG)
set(CMAKE_C_FLAGS "-g -O3")
if(CMAKE_BUILD_TYPE STREQUAL "")
if(USE_GCC OR USE_CLANG)
set(CMAKE_C_FLAGS "-g -O3")
endif()
endif()
else()
set(CMAKE_C_FLAGS "$ENV{CFLAGS}")