mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Make cmake default to "RelWithDebInfo" if not specified
Recent releases has "none" target as the default, with is problematic. Also print the build type.
This commit is contained in:
parent
9800764026
commit
62e375c71c
2 changed files with 7 additions and 0 deletions
|
@ -265,6 +265,11 @@ if ( enable-debug )
|
|||
"Choose the build type, options: Debug Release RelWithDebInfo" FORCE )
|
||||
endif ( enable-debug )
|
||||
|
||||
if ( NOT CMAKE_BUILD_TYPE )
|
||||
set ( CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
||||
"Choose the build type, options: Debug Release RelWithDebInfo" FORCE )
|
||||
endif ( NOT CMAKE_BUILD_TYPE )
|
||||
|
||||
unset ( ENABLE_DEBUG CACHE )
|
||||
unset ( DEBUG CACHE )
|
||||
if ( CMAKE_BUILD_TYPE MATCHES "Debug" )
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
message( "\n**************************************************************\n"
|
||||
"Summary:" )
|
||||
|
||||
message( "Build type: " ${CMAKE_BUILD_TYPE} )
|
||||
|
||||
if ( LIBSNDFILE_SUPPORT )
|
||||
if ( LIBSNDFILE_HASVORBIS )
|
||||
message ( "libsndfile: yes (with ogg vorbis support)" )
|
||||
|
|
Loading…
Reference in a new issue