aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2024-08-15 10:21:33 +0200
committerThomas White <taw@physics.org>2024-08-15 10:21:33 +0200
commitaf2b439637db29ac2cb970c598082520cdd58e3f (patch)
tree8ae845f9cdae0a07aa1fd0f4e02fc626f5076d35
parentcb3eb41d704a4ffa4d3418ce6759633472d2576a (diff)
Meson: Fix pkg-config name for cjson
It should be 'libcjson'. Fixes: https://gitlab.desy.de/thomas.white/crystfel/-/issues/110
-rw-r--r--libcrystfel/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/meson.build b/libcrystfel/meson.build
index 0da646e2..a8d43b4a 100644
--- a/libcrystfel/meson.build
+++ b/libcrystfel/meson.build
@@ -27,7 +27,7 @@ endif
seedeedep = dependency('seedee', required: false)
if seedeedep.found()
- cjsondep = dependency('cjson',
+ cjsondep = dependency('libcjson',
required: true,
fallback: ['cjson', 'libcjson_dep'])
if cjsondep.found() and seedeedep.found()