From 85fdaa998e2a15c5debe70e1b88afa92a5b63425 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Thu, 6 May 2021 11:52:01 +0300 Subject: meson: make wpipc optional and disabled by default This is only intended to be used with specific embedded applications. There is no good reason to use it on a standard desktop environment. Signed-off-by: George Kiagiadakis --- lib/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index 318b304..c7b2635 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -1,3 +1,8 @@ +if get_option('icipc').disabled() + icipc_dep = disabler() + subdir_done() +endif + icipc_lib_sources = files( 'utils.c', 'protocol.c', -- cgit 1.2.3-korg