Remove unnecessary double define

CMake already sets NDEBUG by default for Release builds, no need to duplicate this.
This commit is contained in:
Simon Richter 2017-02-23 18:00:17 +01:00 committed by Wayne Stambaugh
parent 70b3edd06f
commit 986c92f880
1 changed files with 0 additions and 3 deletions

View File

@ -233,9 +233,6 @@ if( CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
set( CMAKE_C_FLAGS_DEBUG "-g3 -ggdb3 -DDEBUG" )
set( CMAKE_CXX_FLAGS_DEBUG "-g3 -ggdb3 -DDEBUG -Wno-deprecated-declarations" )
set( CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNDEBUG" )
set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DNDEBUG" )
if( MINGW )
set( CMAKE_EXE_LINKER_FLAGS_RELEASE "-s" )