1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2017 Intel Corporation 3 4if is_windows 5 build = false 6 reason = 'not supported on Windows' 7 subdir_done() 8endif 9 10sources = files('rte_distributor.c', 'rte_distributor_single.c') 11if arch_subdir == 'x86' 12 sources += files('rte_distributor_match_sse.c') 13else 14 sources += files('rte_distributor_match_generic.c') 15endif 16headers = files('rte_distributor.h') 17deps += ['mbuf'] 18