summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Lachnit <stephanlachnit@debian.org>2022-05-04 20:47:31 +0100
committerStephan Lachnit <stephanlachnit@debian.org>2022-05-04 20:47:31 +0100
commit115883ba8bcea169baf36798ea9e1f64f5184506 (patch)
treea829b535af0f42d5ffc95e7f78af38051b9d3d4c
parent69f174d6c39be55686218b37f7e4578f5f8a5b1f (diff)
fix wrong meson dependency usge
Forwarded: no Gbp-Pq: Name 0001_fix-json-dep.patch
-rw-r--r--meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index fd4e04c..43d6528 100644
--- a/meson.build
+++ b/meson.build
@@ -273,8 +273,7 @@ endif
if get_option('mangoapp') or get_option('mangoapp_layer')
glfw3_dep = dependency('glfw3')
- json_sp = subproject('nlohmann_json')
- json_dep = json_sp.get_variable('nlohmann_json_dep')
+ json_dep = dependency('nlohmann_json')
endif
subdir('src')