mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
34fe2478a2
Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
14 lines
384 B
Meson
14 lines
384 B
Meson
libstoreconsumer_tester = executable(
|
|
'test-libstoreconsumer',
|
|
'main.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',
|
|
],
|
|
dependencies : [
|
|
dependency('nix-store'),
|
|
],
|
|
build_by_default : false,
|
|
)
|