examples/fips_validation: add jansson dependency

Added a check for RTE_HAS_JANSSON into the meson
configuration file for JSON support.

Signed-off-by: Brandon Lo <blo@iol.unh.edu>
Acked-by: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
Tested-by: Jakub Poczatek <jakub.poczatek@intel.com>
This commit is contained in:
Brandon Lo 2022-05-30 21:22:35 +05:30 committed by Akhil Goyal
parent b558a67c32
commit 1230526d13

View File

@ -21,3 +21,7 @@ sources = files(
'fips_dev_self_test.c',
'main.c',
)
if dpdk_conf.has('RTE_HAS_JANSSON')
ext_deps += jansson_dep
endif