X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=drivers%2Fcrypto%2Focteontx%2Fmeson.build;h=daef47a72f2290bd948343518b48daf6358e7ed8;hb=fdefe038eb9b06e7716b42b7e187dfc85231df81;hp=a9f2d3157f00559a167cb551ab6a58c88eab0307;hpb=adf93ca564c73183e1c705cd7f35b98f3a660228;p=dpdk.git diff --git a/drivers/crypto/octeontx/meson.build b/drivers/crypto/octeontx/meson.build index a9f2d3157f..daef47a72f 100644 --- a/drivers/crypto/octeontx/meson.build +++ b/drivers/crypto/octeontx/meson.build @@ -1,18 +1,19 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Cavium, Inc if not is_linux - build = false + build = false + reason = 'only supported on Linux' endif deps += ['bus_pci'] deps += ['common_cpt'] -name = 'octeontx_crypto' -allow_experimental_apis = true -sources = files('otx_cryptodev.c', - 'otx_cryptodev_capabilities.c', - 'otx_cryptodev_hw_access.c', - 'otx_cryptodev_mbox.c', - 'otx_cryptodev_ops.c') +sources = files( + 'otx_cryptodev.c', + 'otx_cryptodev_capabilities.c', + 'otx_cryptodev_hw_access.c', + 'otx_cryptodev_mbox.c', + 'otx_cryptodev_ops.c', +) includes += include_directories('../../common/cpt')