mirror of https://github.com/F-Stack/f-stack.git
15 lines
325 B
Meson
15 lines
325 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) 2021 NVIDIA Corporation & Affiliates
|
|
|
|
driver_sdk_headers += files('bus_auxiliary_driver.h')
|
|
sources = files(
|
|
'auxiliary_common.c',
|
|
'auxiliary_params.c',
|
|
)
|
|
if is_linux
|
|
sources += files(
|
|
'linux/auxiliary.c',
|
|
)
|
|
endif
|
|
deps += ['kvargs']
|