diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-11-15 17:37:14 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-11-15 17:37:14 +0100 |
commit | 2a97037fcc57415151b7f69585772d6e774c8f04 (patch) | |
tree | afc72f7a7be506e204a445b507cc29dce4ea7519 /plugingui | |
parent | b5e8791cabec99138773e4dc13f8c6bb6f2701fc (diff) |
Create DEBUG_FLAGS and use that in the Makefiles whenever appropriate, instead of adding -Wall -Werror directly to CXXFLAGS.
Diffstat (limited to 'plugingui')
-rw-r--r-- | plugingui/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugingui/Makefile.am b/plugingui/Makefile.am index 0f3880a..1dc786e 100644 --- a/plugingui/Makefile.am +++ b/plugingui/Makefile.am @@ -37,6 +37,7 @@ resource_data.cc : rcgen $(RES) ./rcgen $(RES) > resource_data.cc libdggui_la_CPPFLAGS = \ + $(DEBUG_FLAGS) \ $(GUI_CPPFLAGS) \ -I$(top_srcdir)/hugin \ -I$(top_srcdir)/src \ @@ -165,6 +166,7 @@ endif plugingui_LDADD = libdggui.la $(top_srcdir)/src/libdg.la plugingui_CXXFLAGS = \ + $(DEBUG_FLAGS) \ $(GUI_CPPFLAGS) \ $(SNDFILE_CXXFLAGS) \ $(PTHREAD_CFLAGS) \ |