mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 03:56:01 +01:00
This reverts commitbdbc739d6e. Such a change needs more thought put into it. By versioning shared libraries we'd make a false impression that libraries themselves are actually versioned and have some sort of stable ABI, which is not the case. This will be useful when C bindings become stable, but as long as they are experimental it does not make sense to set SONAME. Also this change should not have been backported, since it's severely breaking. (cherry picked from commit0db2b8c8fe)
60 lines
1.5 KiB
Meson
60 lines
1.5 KiB
Meson
project(
|
|
'nix-expr-test-support',
|
|
'cpp',
|
|
version : files('.version'),
|
|
default_options : [
|
|
'cpp_std=c++23',
|
|
# TODO(Qyriad): increase the warning level
|
|
'warning_level=1',
|
|
'errorlogs=true', # Please print logs for tests that fail
|
|
],
|
|
meson_version : '>= 1.1',
|
|
license : 'LGPL-2.1-or-later',
|
|
)
|
|
|
|
cxx = meson.get_compiler('cpp')
|
|
|
|
subdir('nix-meson-build-support/deps-lists')
|
|
|
|
deps_private_maybe_subproject = []
|
|
deps_public_maybe_subproject = [
|
|
dependency('nix-util'),
|
|
dependency('nix-util-test-support'),
|
|
dependency('nix-store'),
|
|
dependency('nix-store-test-support'),
|
|
dependency('nix-expr'),
|
|
dependency('nix-expr-c'),
|
|
]
|
|
subdir('nix-meson-build-support/subprojects')
|
|
|
|
rapidcheck = dependency('rapidcheck')
|
|
deps_public += rapidcheck
|
|
|
|
subdir('nix-meson-build-support/common')
|
|
|
|
sources = files(
|
|
'tests/value/context.cc',
|
|
)
|
|
|
|
subdir('include/nix/expr/tests')
|
|
|
|
subdir('nix-meson-build-support/export-all-symbols')
|
|
subdir('nix-meson-build-support/windows-version')
|
|
|
|
this_library = library(
|
|
'nix-expr-test-support',
|
|
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' ],
|
|
prelink : true, # For C++ static initializers
|
|
install : true,
|
|
)
|
|
|
|
install_headers(headers, subdir : 'nix/expr/tests', preserve_path : true)
|
|
|
|
libraries_private = []
|
|
|
|
subdir('nix-meson-build-support/export')
|