New upstream version 18.11.2
[deb_dpdk.git] / drivers / crypto / zuc / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 lib = cc.find_library('sso_zuc', required: false)
5 if not lib.found() or not cc.has_header('sso_zuc.h')
6         build = false
7         subdir_done()
8 endif
9
10 ext_deps += lib
11 sources = files('rte_zuc_pmd.c', 'rte_zuc_pmd_ops.c')
12 deps += ['bus_vdev']