/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libnvme/meson.build
73 строки
2 KB
Daniel Wagner
libnvme: rename test to tests
10 авг 2026, 19:54
10 авг 2026, 19:54
50f3246
Код
Авторство
О чём код?
# SPDX-License-Identifier: LGPL-2.1-or-later # # This file is part of libnvme. # Copyright (c) 2021 Dell Inc. # # Authors: Martin Belanger <Martin.Belanger@dell.com> # if want_libnvme if openssl_dep.found() and meson.can_run_host_binaries() if openssl_dep.type_name() != 'internal' # Check for a bug in the EVP_PKEY_CTX_add1_hkdf_info implementation res = cc.run( files('tests/hkdf_add1.c'), dependencies: [openssl_dep], name: 'check hkdf_add1' ) if res.returncode() == 1 warning('EVP_PKEY_CTX_add1_hkdf_info bahaves incorrectly') else message('EVP_PKEY_CTX_add1_hkdf_info behaves sanely') endif endif endif ############################################################################ configure_file( input: 'libnvme.spec.in', output: 'libnvme.spec', configuration: substs, ) ############################################################################ libnvme_srcroot = meson.current_source_dir() # needed by tools/generator subdir('tools/generator') # generate code needed by src below subdir('src') # declares: libnvme_dep subdir('libnvme3') if want_tests subdir('tests') endif if want_examples subdir('examples') endif if want_fabrics configure_file( input: 'sysfiles/udev/rules.d/70-nvmf-registry.rules.in', output: '70-nvmf-registry.rules', configuration: substs, install_dir: udevrulesdir, ) endif subdir('doc') else # Fallback to using a pre-installed libnvme (if available) if std_prefix # When prefix points to a standard location, meson can use # standard methods (e.g. pkg-config) to find the library. libnvme_dep = dependency( libnvme_api_name, version: '>=@0@'.format(libnvme_so_version), required: want_nvme, ) else # When prefix points to a non-standard location # let's ask the C compiler to find the library for us. libnvme_dep = cc.find_library( libnvme_link_name, dirs: prefixdir / get_option('libdir'), required: want_nvme, ) endif endif