X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fsoftnic%2Fmeson.build;h=9c10c2ec80ed230443d1d016588b94d9bdcfcbed;hb=50556c88104cbc0096e90f454dc137258be2099f;hp=8d3b4a09b05f5790b93c5d8fa9bf906cb457910f;hpb=31ce8d888625e45019eac7fa9145edc57911e897;p=dpdk.git diff --git a/drivers/net/softnic/meson.build b/drivers/net/softnic/meson.build index 8d3b4a09b0..9c10c2ec80 100644 --- a/drivers/net/softnic/meson.build +++ b/drivers/net/softnic/meson.build @@ -1,6 +1,10 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation +if not is_linux + build = false + reason = 'only supported on linux' +endif allow_experimental_apis = true install_headers('rte_eth_softnic.h') sources = files('rte_eth_softnic_tm.c', @@ -13,5 +17,9 @@ sources = files('rte_eth_softnic_tm.c', 'rte_eth_softnic_pipeline.c', 'rte_eth_softnic_thread.c', 'rte_eth_softnic_cli.c', - 'parser.c') -deps += ['pipeline', 'port', 'table', 'sched'] + 'rte_eth_softnic_flow.c', + 'rte_eth_softnic_meter.c', + 'rte_eth_softnic_cryptodev.c', + 'parser.c', + 'conn.c') +deps += ['pipeline', 'port', 'table', 'sched', 'cryptodev']