mirror of https://github.com/inolen/redream.git
Change default build type to RelWithDebInfo (#66)
This commit is contained in:
parent
f3a6d87af4
commit
c803ad01f3
|
@ -16,6 +16,11 @@ set(CMAKE_CXX_STANDARD 11)
|
|||
# configuration options
|
||||
#--------------------------------------------------
|
||||
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
||||
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
|
||||
endif()
|
||||
|
||||
option(BUILD_TOOLS "Build tools" ON)
|
||||
option(BUILD_TESTS "Build tests" ON)
|
||||
|
||||
|
|
Loading…
Reference in New Issue