diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:22:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:22:29 +0000 |
commit | 068a45420f2c98887e220b45e946cc7074da550e (patch) | |
tree | c5b54e8b4b235232b057a9c534d9a16d2208463d /internal | |
parent | Initial commit. (diff) | |
download | libnvme-068a45420f2c98887e220b45e946cc7074da550e.tar.xz libnvme-068a45420f2c98887e220b45e946cc7074da550e.zip |
Adding upstream version 1.8.upstream/1.8
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | internal/meson.build | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/internal/meson.build b/internal/meson.build new file mode 100644 index 0000000..744f83e --- /dev/null +++ b/internal/meson.build @@ -0,0 +1,30 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later +# +# This file is part of libnvme. +# Copyright (c) 2022 Dell Inc. +# +# Authors: Martin Belanger <Martin.Belanger@dell.com> +# +# Because libnvme is used as a subproject of nvme-cli, +# the config.h file must be generated as a private file +# hidden from nvme-cli. + +config_h = configure_file( + output: 'config.h', + configuration: conf +) + +internal_incdir = include_directories('.') + +config_dep = declare_dependency( + include_directories : internal_incdir, + sources: config_h) + +config_h_path = meson.current_build_dir() / 'config.h' + +add_project_arguments( + [ + '-include', config_h_path, + ], + language : 'c', +) |