From: Antonio Ospite Date: Wed, 30 Oct 2013 09:41:06 +0000 (+0100) Subject: CMakeLists.txt: define DEBUG=1 only when CMAKE_BUILD_TYPE=Debug X-Git-Tag: v0.1.5~15 X-Git-Url: https://git.ao2.it/libam7xxx.git/commitdiff_plain/f3b176f27268e13942f452e915171b9c8b34f6ce?hp=f3b176f27268e13942f452e915171b9c8b34f6ce CMakeLists.txt: define DEBUG=1 only when CMAKE_BUILD_TYPE=Debug When building with CMAKE_BUILD_TYPE=RelWithDebInfo the development debug code should not be enabled, so don't define DEBUG=1 in DEBUG_FLAGS as this will end up being both in CMAKE_C_FLAGS_DEBUG and CMAKE_C_FLAGS_RELWITHDEBINFO. Instead define DEBUG=1 only for CMAKE_C_FLAGS_DEBUG so it gets used only when CMAKE_BUILD_TYPE=Debug. ---