0e8742ab9cdea1982612023ca4ffdd06276d4a7b
[dpdk.git] / drivers / crypto / snow3g / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2019 Intel Corporation
3
4 lib = cc.find_library('sso_snow3g', required: false)
5 if not lib.found() or not cc.has_header('sso_snow3g.h')
6         build = false
7         reason = 'missing dependency, "libsso_snow3g"'
8         subdir_done()
9 endif
10
11 allow_experimental_apis = true
12 ext_deps += lib
13 sources = files('rte_snow3g_pmd.c', 'rte_snow3g_pmd_ops.c')
14 deps += ['bus_vdev', 'cryptodev']