X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fioat%2Fmeson.build;h=68bce1ab03dae7af1596bff582bcbf0e79e31af9;hb=167978c1678fc5fd525e4e731de4c00093aee129;hp=f72cf70e7e613c8eac12230333eb3bb8a47cd27f;hpb=78d44153de8f7041ff35cb2c676fac8b9488f753;p=dpdk.git diff --git a/examples/ioat/meson.build b/examples/ioat/meson.build index f72cf70e7e..68bce1ab03 100644 --- a/examples/ioat/meson.build +++ b/examples/ioat/meson.build @@ -7,10 +7,13 @@ # DPDK instance, use 'make' allow_experimental_apis = true -build = dpdk_conf.has('RTE_LIBRTE_PMD_IOAT_RAWDEV') +build = dpdk_conf.has('RTE_RAW_IOAT') +if not build + subdir_done() +endif -deps += ['rawdev_ioat'] +deps += ['raw_ioat'] sources = files( - 'ioatfwd.c' + 'ioatfwd.c', )