2024-06-27 18:28:08 +03:00
|
|
|
project('nix-store-test-support', 'cpp',
|
2024-06-25 16:35:47 +03:00
|
|
|
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')
|
2024-06-25 16:35:47 +03:00
|
|
|
|
2024-06-27 19:34:03 +03:00
|
|
|
deps_private_maybe_subproject = [
|
|
|
|
]
|
|
|
|
deps_public_maybe_subproject = [
|
2024-06-27 05:15:33 +03:00
|
|
|
dependency('nix-util'),
|
2024-06-27 18:28:08 +03:00
|
|
|
dependency('nix-util-test-support'),
|
|
|
|
dependency('nix-store'),
|
2024-06-27 05:15:33 +03:00
|
|
|
]
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/subprojects')
|
2024-06-27 05:15:33 +03:00
|
|
|
|
2024-07-22 18:33:37 +03:00
|
|
|
subdir('build-utils-meson/threads')
|
|
|
|
|
2024-06-27 05:15:33 +03:00
|
|
|
rapidcheck = dependency('rapidcheck')
|
|
|
|
deps_public += rapidcheck
|
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
add_project_arguments(
|
2024-06-27 18:28:08 +03:00
|
|
|
# TODO(Qyriad): Yes this is how the autoconf+Make system did it.
|
|
|
|
# It would be nice for our headers to be idempotent instead.
|
|
|
|
'-include', 'config-util.hh',
|
|
|
|
'-include', 'config-store.hh',
|
2024-06-25 16:35:47 +03:00
|
|
|
language : 'cpp',
|
|
|
|
)
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/diagnostics')
|
2024-06-27 23:11:52 +03:00
|
|
|
|
2024-06-25 16:35:47 +03:00
|
|
|
sources = files(
|
2024-06-27 18:28:08 +03:00
|
|
|
'tests/derived-path.cc',
|
|
|
|
'tests/outputs-spec.cc',
|
|
|
|
'tests/path.cc',
|
2024-06-25 16:35:47 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
include_dirs = [include_directories('.')]
|
|
|
|
|
|
|
|
headers = files(
|
2024-06-27 18:28:08 +03:00
|
|
|
'tests/derived-path.hh',
|
|
|
|
'tests/libstore.hh',
|
|
|
|
'tests/nix_api_store.hh',
|
|
|
|
'tests/outputs-spec.hh',
|
|
|
|
'tests/path.hh',
|
|
|
|
'tests/protocol.hh',
|
2024-06-25 16:35:47 +03:00
|
|
|
)
|
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/export-all-symbols')
|
2024-06-25 16:35:47 +03:00
|
|
|
|
|
|
|
this_library = library(
|
2024-06-27 18:28:08 +03:00
|
|
|
'nix-store-test-support',
|
2024-06-25 16:35:47 +03:00
|
|
|
sources,
|
|
|
|
dependencies : deps_public + deps_private + deps_other,
|
|
|
|
include_directories : include_dirs,
|
|
|
|
# TODO: Remove `-lrapidcheck` when https://github.com/emil-e/rapidcheck/pull/326
|
|
|
|
# is available. See also ../libutil/build.meson
|
|
|
|
link_args: linker_export_flags + ['-lrapidcheck'],
|
2024-06-29 00:02:23 +03:00
|
|
|
prelink : true, # For C++ static initializers
|
2024-06-25 16:35:47 +03:00
|
|
|
install : true,
|
|
|
|
)
|
|
|
|
|
|
|
|
install_headers(headers, subdir : 'nix', preserve_path : true)
|
|
|
|
|
2024-06-27 19:17:13 +03:00
|
|
|
libraries_private = []
|
2024-06-25 16:35:47 +03:00
|
|
|
|
2024-06-28 01:28:13 +03:00
|
|
|
subdir('build-utils-meson/export')
|