diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-05-06 11:52:01 +0300 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-07-28 13:19:02 +0300 |
commit | 85fdaa998e2a15c5debe70e1b88afa92a5b63425 (patch) | |
tree | f92753ab1a6a58231746d368bf4abdeb61abe87f /lib | |
parent | f25bb13718f334bc0c96d29ea9f3a57c0a6f3a34 (diff) |
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 <george.kiagiadakis@collabora.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
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', |