aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_mempool/meson.build
blob: 38d7ae8905f1c44bf526a51c448330e236a1305d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation

allow_experimental_apis = true

extra_flags = []

foreach flag: extra_flags
	if cc.has_argument(flag)
		cflags += flag
	endif
endforeach

version = 5
sources = files('rte_mempool.c', 'rte_mempool_ops.c',
		'rte_mempool_ops_default.c')
headers = files('rte_mempool.h')
deps += ['ring']

# memseg walk is not yet part of stable API
allow_experimental_apis = true