nix-super/src/libutil-c/meson.build

80 lines
1.8 KiB
Meson
Raw Normal View History

project('nix-util-c', 'cpp',
version : files('.version'),
default_options : [
'cpp_std=c++2a',
# TODO(Qyriad): increase the warning level
'warning_level=1',
'debug=true',
'optimization=2',
'errorlogs=true', # Please print logs for tests that fail
],
meson_version : '>= 1.1',
license : 'LGPL-2.1-or-later',
)
cxx = meson.get_compiler('cpp')
2024-06-28 01:28:13 +03:00
subdir('build-utils-meson/deps-lists')
configdata = configuration_data()
2024-06-27 19:34:03 +03:00
deps_private_maybe_subproject = [
2024-06-27 17:19:03 +03:00
dependency('nix-util'),
]
2024-06-27 19:34:03 +03:00
deps_public_maybe_subproject = [
2024-06-27 17:19:03 +03:00
]
2024-06-28 01:28:13 +03:00
subdir('build-utils-meson/subprojects')
2024-06-27 17:19:03 +03:00
# TODO rename, because it will conflict with downstream projects
configdata.set_quoted('PACKAGE_VERSION', meson.project_version())
config_h = configure_file(
configuration : configdata,
output : 'config-util.h',
)
add_project_arguments(
# TODO(Qyriad): Yes this is how the autoconf+Make system did it.
# It would be nice for our headers to be idempotent instead.
2024-06-27 17:19:03 +03:00
# From C++ libraries, only for internals
'-include', 'config-util.hh',
# From C libraries, for our public, installed headers too
'-include', 'config-util.h',
language : 'cpp',
)
2024-06-28 01:28:13 +03:00
subdir('build-utils-meson/diagnostics')
2024-06-27 23:11:52 +03:00
sources = files(
'nix_api_util.cc',
)
include_dirs = [include_directories('.')]
2024-06-27 17:19:03 +03:00
headers = [config_h] + files(
'nix_api_util.h',
)
2024-06-28 21:57:10 +03:00
# TODO don't install this once tests don't use it.
headers += files('nix_api_util_internal.h')
2024-06-28 01:28:13 +03:00
subdir('build-utils-meson/export-all-symbols')
this_library = library(
'nixutilc',
sources,
dependencies : deps_public + deps_private + deps_other,
include_directories : include_dirs,
link_args: linker_export_flags,
prelink : true, # For C++ static initializers
install : true,
)
install_headers(headers, subdir : 'nix', preserve_path : true)
2024-06-27 19:17:13 +03:00
libraries_private = []
2024-06-27 17:19:03 +03:00
2024-06-28 01:28:13 +03:00
subdir('build-utils-meson/export')