2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-10-17 13:43:57 +01:00
|
|
|
|
2021-10-20 12:25:54 +01:00
|
|
|
if is_windows
|
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2021-11-04 11:03:33 +00:00
|
|
|
sources = files('rte_sched.c', 'rte_red.c', 'rte_approx.c', 'rte_pie.c')
|
2021-04-20 11:22:24 +01:00
|
|
|
headers = files(
|
|
|
|
'rte_approx.h',
|
|
|
|
'rte_red.h',
|
|
|
|
'rte_sched.h',
|
|
|
|
'rte_sched_common.h',
|
2021-11-04 11:03:33 +00:00
|
|
|
'rte_pie.h',
|
2021-04-20 11:22:24 +01:00
|
|
|
)
|
2017-10-17 13:43:57 +01:00
|
|
|
deps += ['mbuf', 'meter']
|