From 2ff29226e876121b7ef8e09d52ff5e5623fc3e9d Mon Sep 17 00:00:00 2001 From: Michael Brockus <55331536+michaelbadcrumble@users.noreply.github.com> Date: Sat, 12 Oct 2019 09:22:31 -0700 Subject: [PATCH] Upgrade Meson version too 0.52.0 Simply bumping Meson build support version 0.52.0 --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f018db6..1cd6dd4 100755 --- a/meson.build +++ b/meson.build @@ -12,7 +12,7 @@ project('cmock', 'c', license : 'MIT', - meson_version : '>=0.50.0', + meson_version : '>=0.52.0', subproject_dir : 'vendor', default_options: [ 'buildtype=minsize', @@ -64,6 +64,7 @@ if cc.get_id() == 'msvc' ), language: lang) endif + unity_dep = dependency('unity', fallback: ['unity', 'unity_dep']) subdir('src')