mirror of https://github.com/encounter/SDL.git
CMake: only set "-O3 -g" defaults if CMAKE_BUILD_TYPE wasn't set at all.
This commit is contained in:
parent
06129f6de9
commit
1615b2e29d
|
@ -158,8 +158,10 @@ endif()
|
||||||
|
|
||||||
# Default flags, if not set otherwise
|
# Default flags, if not set otherwise
|
||||||
if("$ENV{CFLAGS}" STREQUAL "")
|
if("$ENV{CFLAGS}" STREQUAL "")
|
||||||
if(USE_GCC OR USE_CLANG)
|
if(CMAKE_BUILD_TYPE STREQUAL "")
|
||||||
set(CMAKE_C_FLAGS "-g -O3")
|
if(USE_GCC OR USE_CLANG)
|
||||||
|
set(CMAKE_C_FLAGS "-g -O3")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
set(CMAKE_C_FLAGS "$ENV{CFLAGS}")
|
set(CMAKE_C_FLAGS "$ENV{CFLAGS}")
|
||||||
|
|
Loading…
Reference in New Issue