[meson] Mark rest of non-install executables explicitly

This commit is contained in:
Ebrahim Byagowi 2020-03-24 22:35:41 +04:30
parent 68df3f7dac
commit 7054b12206
3 changed files with 9 additions and 6 deletions

View File

@ -73,6 +73,7 @@ if conf.get('HAVE_GLIB', 0) == 1
include_directories: [incconfig, incsrc],
dependencies: deps,
link_with: libharfbuzz,
install: false,
), env: env)
endforeach
@ -82,6 +83,7 @@ if conf.get('HAVE_GLIB', 0) == 1
include_directories: [incconfig, incsrc],
dependencies: deps,
link_with: [libharfbuzz, libharfbuzz_subset],
install: false,
), env: env)
endforeach
else

View File

@ -13,6 +13,7 @@ foreach file_name : tests
include_directories: [incconfig, incsrc],
dependencies: deps,
link_with: [libharfbuzz, libharfbuzz_subset],
install: false,
)
set_variable('@0@_exe'.format(test_name.underscorify()), exe)
endforeach