X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fnfb%2Fmeson.build;h=bb5f66a09a2d43d3678d8eb414d55b9ad1af4075;hb=93dfebd2c237217ab22c2acb8795c61da6e50870;hp=42f7921dceb2993c4d9f6793392dc477d6bf5bd9;hpb=b9d60b5434e9df46f53fc1e3aa4b065f261adb83;p=dpdk.git diff --git a/drivers/net/nfb/meson.build b/drivers/net/nfb/meson.build index 42f7921dce..bb5f66a09a 100644 --- a/drivers/net/nfb/meson.build +++ b/drivers/net/nfb/meson.build @@ -4,14 +4,20 @@ # All rights reserved. if is_windows - build = false - reason = 'not supported on Windows' - subdir_done() + build = false + reason = 'not supported on Windows' + subdir_done() endif -dep = dependency('netcope-common', required: false) +dep = dependency('netcope-common', required: false, method: 'pkg-config') reason = 'missing dependency, "libnfb"' build = dep.found() ext_deps += dep -sources = files('nfb_rx.c', 'nfb_tx.c', 'nfb_stats.c', 'nfb_ethdev.c', 'nfb_rxmode.c') +sources = files( + 'nfb_ethdev.c', + 'nfb_rx.c', + 'nfb_rxmode.c', + 'nfb_stats.c', + 'nfb_tx.c', +)