diff options
author | Winter <winter@winter.cafe> | 2024-03-26 23:09:43 -0400 |
---|---|---|
committer | Winter <winter@winter.cafe> | 2024-03-29 14:16:58 -0400 |
commit | 6646b803964cc60a25723ac92cf97d4e828a83c3 (patch) | |
tree | 4ede17db75a636f530fc1d7a03b5b7d83b781a2c /src/libexpr/meson.build | |
parent | 9d97d1cb68e6a374f07294c4d46ac8ed1485ce23 (diff) |
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
Diffstat (limited to 'src/libexpr/meson.build')
-rw-r--r-- | src/libexpr/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/meson.build b/src/libexpr/meson.build index 7c0555f8f..099279d56 100644 --- a/src/libexpr/meson.build +++ b/src/libexpr/meson.build @@ -139,6 +139,7 @@ libexpr = library( boehm, boost, toml11, + nlohmann_json, ], # for shared.hh include_directories : [ |