nix-eval-jobs/src/meson.build
adisbladis 174e735183
Rename project to nix-eval-jobs
We are getting rid of Hydra specific hacks and making this a more
generically useful component for any projects that need to run
large evaluations.
2021-08-24 14:06:27 -05:00

15 lines
357 B
Meson

src = [
'nix-eval-jobs.cc',
]
executable('nix-eval-jobs', src,
dependencies : [
nix_main_dep,
nix_store_dep,
nix_expr_dep,
boost_dep,
nlohmann_json_dep,
threads_dep
],
install: true,
cpp_args: ['-std=c++17', '-fvisibility=hidden'])