From e7c564f051b79c2ae48c79737a2d49ad1a6c0778 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Fri, 9 Jul 2021 00:07:08 +0100 Subject: Fix missing m dependency for imv-msg Fixes #328 --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 15ec491..f1312c3 100644 --- a/meson.build +++ b/meson.build @@ -21,6 +21,7 @@ add_project_arguments('-D_XOPEN_SOURCE=700', language: 'c') cc = meson.get_compiler('c') dep_null = dependency('', required: false) +m_dep = cc.find_library('m', required : false) _windows = get_option('windows') if _windows == 'wayland' @@ -50,6 +51,7 @@ deps_for_imv = [ dependency('xkbcommon'), dependency('icu-io'), dependency('inih', fallback : ['inih', 'inih_dep']), + m_dep, ] files_common = files( -- cgit v1.2.3