From 6646b803964cc60a25723ac92cf97d4e828a83c3 Mon Sep 17 00:00:00 2001 From: Winter Date: Tue, 26 Mar 2024 23:09:43 -0400 Subject: meson: add missing explicit dependency on nlohmann_json Without this, the Meson setup won't bail out if nlohmann_json is missing, leading to subpar DX (and maybe worse, but I'm not entirely sure). Change-Id: I5913111060226b540dcf003257c99a08e84da0de --- meson.build | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index a4c2bbc14..ca250ce99 100644 --- a/meson.build +++ b/meson.build @@ -214,6 +214,9 @@ deps += gtest toml11 = dependency('toml11', version : '>=3.7.0', required : true) deps += toml11 +nlohmann_json = dependency('nlohmann_json', required : true) +deps += nlohmann_json + # # Build-time tools # -- cgit v1.2.3