diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:40:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:40:20 +0000 |
commit | 2dba2525fb35dcfc79aad5bdf6c92e790d69635c (patch) | |
tree | ac8ac7d3960922094733bac6d9a5300da7171c56 /internal/meson.build | |
parent | Initial commit. (diff) | |
download | libnvme-2dba2525fb35dcfc79aad5bdf6c92e790d69635c.tar.xz libnvme-2dba2525fb35dcfc79aad5bdf6c92e790d69635c.zip |
Adding upstream version 1.3.upstream/1.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'internal/meson.build')
-rw-r--r-- | internal/meson.build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/internal/meson.build b/internal/meson.build new file mode 100644 index 0000000..fde4cca --- /dev/null +++ b/internal/meson.build @@ -0,0 +1,21 @@ +# 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) |