f-stack/dpdk/drivers/regex/mlx5/meson.build

30 lines
652 B
Meson
Raw Normal View History

2021-02-05 08:48:47 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2020 Mellanox Technologies, Ltd
if not is_linux
2022-09-06 04:00:10 +00:00
build = false
reason = 'only supported on Linux'
subdir_done()
2021-02-05 08:48:47 +00:00
endif
deps += ['common_mlx5', 'eal', 'regexdev']
sources = files(
2022-09-06 04:00:10 +00:00
'mlx5_regex.c',
'mlx5_rxp.c',
'mlx5_regex_devx.c',
'mlx5_regex_control.c',
'mlx5_regex_fastpath.c',
2021-02-05 08:48:47 +00:00
)
cflags_options = [
2022-09-06 04:00:10 +00:00
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600',
2021-02-05 08:48:47 +00:00
]
foreach option:cflags_options
2022-09-06 04:00:10 +00:00
if cc.has_argument(option)
cflags += option
endif
2021-02-05 08:48:47 +00:00
endforeach