f-stack/dpdk/drivers/net/pcap/meson.build

18 lines
380 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
2022-09-06 04:00:10 +00:00
if not dpdk_conf.has('RTE_HAS_LIBPCAP')
build = false
reason = 'missing dependency, "libpcap"'
2019-06-25 11:12:58 +00:00
endif
2022-09-06 04:00:10 +00:00
sources = files(
'pcap_ethdev.c',
'pcap_osdep_@0@.c'.format(exec_env),
)
2019-06-25 11:12:58 +00:00
ext_deps += pcap_dep
2022-09-06 04:00:10 +00:00
if is_windows
ext_deps += cc.find_library('iphlpapi', required: true)
endif