There are some known regressions regarding local testing setups - since everything was kinda half written with the expectation that build dir = source dir (which should not be true anymore). But everything builds and the test suite runs fine, after several hours spent debugging random crashes in libpqxx with MALLOC_PERTURB_...
17 lines
364 B
Meson
17 lines
364 B
Meson
# Native code
|
|
subdir('libhydra')
|
|
subdir('hydra-evaluator')
|
|
subdir('hydra-queue-runner')
|
|
|
|
# Data and interpreted
|
|
foreach dir : ['lib', 'root', 'sql', 'ttf']
|
|
install_subdir(dir,
|
|
install_dir: get_option('libexecdir') / 'hydra',
|
|
)
|
|
endforeach
|
|
install_subdir('script',
|
|
install_dir: get_option('bindir'),
|
|
install_mode: 'rwxr-xr-x',
|
|
strip_directory: true,
|
|
)
|