mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
Build Functional tests with Meson
Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
parent
d434a54b6c
commit
34fe2478a2
29 changed files with 678 additions and 115 deletions
16
tests/functional/plugins/meson.build
Normal file
16
tests/functional/plugins/meson.build
Normal file
|
@ -0,0 +1,16 @@
|
|||
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-fetchers.hh',
|
||||
'-include', 'config-expr.hh',
|
||||
],
|
||||
dependencies : [
|
||||
dependency('nix-expr'),
|
||||
],
|
||||
build_by_default : false,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue