adisbladis
174e735183
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.
15 lines
357 B
Meson
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'])
|