From fe2a4974a6df7e00e64bb6d359a9a28f87f6ba7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Duda?= Date: Thu, 25 Oct 2018 21:57:55 +0200 Subject: [PATCH] [common-switches] add missing switches (#3208) --- examples/common-switches.mk | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/examples/common-switches.mk b/examples/common-switches.mk index b72832156..fa77c3521 100644 --- a/examples/common-switches.mk +++ b/examples/common-switches.mk @@ -55,6 +55,18 @@ ifeq ($(COVERAGE),1) configure_OPTIONS += --enable-coverage endif +ifeq ($(CHANNEL_MANAGER),1) +configure_OPTIONS += --enable-channel-manager +endif + +ifeq ($(CHANNEL_MONITOR),1) +configure_OPTIONS += --enable-channel-monitor +endif + +ifeq ($(CHILD_SUPERVISION),1) +configure_OPTIONS += --enable-child-supervision +endif + ifeq ($(DEBUG),1) configure_OPTIONS += --enable-debug --enable-optimization=no endif