mirror of https://github.com/F-Stack/f-stack.git
14 lines
329 B
Meson
14 lines
329 B
Meson
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
# Copyright(c) 2019 Arm Limited
|
||
|
|
||
|
dep = dependency('libAArch64crypto', required: false)
|
||
|
if not dep.found()
|
||
|
build = false
|
||
|
reason = 'missing dependency, "libAArch64crypto"'
|
||
|
subdir_done()
|
||
|
endif
|
||
|
|
||
|
ext_deps += dep
|
||
|
deps += ['bus_vdev']
|
||
|
sources = files('rte_armv8_pmd.c', 'rte_armv8_pmd_ops.c')
|