2020-04-15 08:48:00 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2019-2020 Intel Corporation
|
|
|
|
|
2020-12-22 00:45:11 +00:00
|
|
|
if is_windows
|
2021-04-20 10:22:25 +00:00
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
2020-12-22 00:45:11 +00:00
|
|
|
endif
|
|
|
|
|
2020-04-15 08:48:01 +00:00
|
|
|
subdir('base')
|
|
|
|
objs = [base_objs]
|
|
|
|
|
2020-04-15 08:48:00 +00:00
|
|
|
sources = files(
|
2021-04-20 10:22:25 +00:00
|
|
|
'igc_ethdev.c',
|
|
|
|
'igc_logs.c',
|
|
|
|
'igc_filter.c',
|
|
|
|
'igc_flow.c',
|
|
|
|
'igc_txrx.c',
|
2020-04-15 08:48:00 +00:00
|
|
|
)
|
2020-04-15 08:48:01 +00:00
|
|
|
|
|
|
|
includes += include_directories('base')
|