diff options
author | David Robillard <d@drobilla.net> | 2022-11-15 14:32:54 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-11-15 14:32:54 -0500 |
commit | 875df8c7f846942b61d8fc43e544045c8cbffa06 (patch) | |
tree | e279a9cc884fc04218265baed9874f5afbd4b159 | |
parent | 396058c96722b0aac262744af8d4e7a4c8436876 (diff) | |
download | zix-875df8c7f846942b61d8fc43e544045c8cbffa06.tar.gz zix-875df8c7f846942b61d8fc43e544045c8cbffa06.tar.bz2 zix-875df8c7f846942b61d8fc43e544045c8cbffa06.zip |
Fix build as a subproject
-rw-r--r-- | meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 203605c..56d64d8 100644 --- a/meson.build +++ b/meson.build @@ -581,10 +581,11 @@ if not get_option('benchmarks').disabled() benchmark, executable( benchmark, - 'benchmark/@0@.c'.format(benchmark), + files('benchmark/@0@.c'.format(benchmark)), include_directories: include_dirs, c_args: c_suppressions + benchmark_c_args, - dependencies: [zix_dep, glib_dep]), + dependencies: [zix_dep, glib_dep], + ), ) endforeach endif |