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 /tests/unit | |
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 'tests/unit')
-rw-r--r-- | tests/unit/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build index a2e882098..a5523a813 100644 --- a/tests/unit/meson.build +++ b/tests/unit/meson.build @@ -63,6 +63,7 @@ libutil_tester = executable( liblixutil, liblixexpr, liblixutil_test_support, + nlohmann_json, ], ) @@ -127,6 +128,7 @@ libstore_tester = executable( liblixutil, rapidcheck, gtest, + nlohmann_json, ], ) @@ -191,6 +193,7 @@ libexpr_tester = executable( rapidcheck, boehm, gtest, + nlohmann_json, ], ) |