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

24 lines
517 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
2022-09-06 04:00:10 +00:00
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
endif
2022-09-02 04:40:05 +00:00
dep = dependency('zlib', required: false, method: 'pkg-config')
2019-06-25 11:12:58 +00:00
build = dep.found()
2020-06-18 16:55:50 +00:00
reason = 'missing dependency, "zlib"'
2019-06-25 11:12:58 +00:00
ext_deps += dep
cflags += '-DZLIB_CONST'
2022-09-06 04:00:10 +00:00
sources = files(
'bnx2x.c',
'bnx2x_ethdev.c',
'bnx2x_rxtx.c',
'bnx2x_stats.c',
'bnx2x_vfpf.c',
'ecore_sp.c',
'elink.c',
)