mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
- Some headers were completely redundant and have been removed. - Other headers have been turned private. - Unnecessary meson.build code has been removed. - libutil-tests now has a private config header, where previously it had none. This removes the need to expose a package version macro publicly.
15 lines
405 B
Meson
15 lines
405 B
Meson
libplugintest = shared_module(
|
|
'plugintest',
|
|
'plugintest.cc',
|
|
cpp_args : [
|
|
# 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',
|
|
'-include', 'config-expr.hh',
|
|
],
|
|
dependencies : [
|
|
dependency('nix-expr'),
|
|
],
|
|
build_by_default : false,
|
|
)
|