From 486b601ecb6d79c90eadc4dda0981e25e6a7ba1d Mon Sep 17 00:00:00 2001 From: Sander Vrijders <sander.vrijders@intec.ugent.be> Date: Thu, 3 Mar 2016 17:15:57 +0100 Subject: build: Move debugging switch to correct CMakeLists This moves the debugging switch down to the CMakeList associated with every program or library. It allows to build apps individually with debugging info on or off. --- src/dad/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/dad') diff --git a/src/dad/CMakeLists.txt b/src/dad/CMakeLists.txt index 3d4b8ea7..ef0a3a1e 100644 --- a/src/dad/CMakeLists.txt +++ b/src/dad/CMakeLists.txt @@ -13,4 +13,9 @@ add_executable (dad ${SOURCE_FILES}) target_link_libraries (dad LINK_PUBLIC ouroboros) +include(MacroAddCompileFlags) +if (CMAKE_BUILD_TYPE MATCHES Debug) + MACRO_ADD_COMPILE_FLAGS(dad -DCONFIG_OUROBOROS_DEBUG) +endif (CMAKE_BUILD_TYPE MATCHES Debug) + install(TARGETS dad RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) -- cgit v1.2.3