b1094939a5
Rather than maintaining a separate list of libraries which are to be built on windows, use the standard library list and explicitly add to each library that is not to be built a check for windows and disable the library at that per-lib level. As well as shortening the main lib/meson.build file, this also leads to the build summary at the end of the meson config run correctly listing the libraries which are not to be built. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
25 lines
635 B
Meson
25 lines
635 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2020 Marvell International Ltd.
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
sources = files(
|
|
'ethdev_ctrl.c',
|
|
'ethdev_rx.c',
|
|
'ethdev_tx.c',
|
|
'ip4_lookup.c',
|
|
'ip4_rewrite.c',
|
|
'log.c',
|
|
'null.c',
|
|
'pkt_cls.c',
|
|
'pkt_drop.c',
|
|
)
|
|
headers = files('rte_node_ip4_api.h', 'rte_node_eth_api.h')
|
|
# Strict-aliasing rules are violated by uint8_t[] to context size casts.
|
|
cflags += '-fno-strict-aliasing'
|
|
deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']
|