1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (c) 2022 NVIDIA Corporation & Affiliates 3 4if not (is_linux and mlx5_config.get('HAVE_IBV_FLOW_DV_SUPPORT', false)) 5 subdir_done() 6endif 7 8includes += include_directories('.') 9sources += files( 10 'mlx5dr_context.c', 11 'mlx5dr_table.c', 12 'mlx5dr_matcher.c', 13 'mlx5dr_rule.c', 14 'mlx5dr_action.c', 15 'mlx5dr_buddy.c', 16 'mlx5dr_pool.c', 17 'mlx5dr_cmd.c', 18 'mlx5dr_send.c', 19 'mlx5dr_definer.c', 20 'mlx5dr_debug.c', 21 'mlx5dr_pat_arg.c', 22 'mlx5dr_crc32.c', 23 'mlx5dr_bwc.c', 24) 25