mirror of https://github.com/F-Stack/f-stack.git
23 lines
407 B
Meson
23 lines
407 B
Meson
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
# Copyright(c) 2018-2021 Beijing WangXun Technology Co., Ltd.
|
||
|
|
||
|
if is_windows
|
||
|
build = false
|
||
|
reason = 'not supported on Windows'
|
||
|
subdir_done()
|
||
|
endif
|
||
|
|
||
|
subdir('base')
|
||
|
objs = [base_objs]
|
||
|
|
||
|
sources = files(
|
||
|
'ngbe_ethdev.c',
|
||
|
'ngbe_ptypes.c',
|
||
|
'ngbe_pf.c',
|
||
|
'ngbe_rxtx.c',
|
||
|
)
|
||
|
|
||
|
deps += ['hash']
|
||
|
|
||
|
includes += include_directories('base')
|