[meson] Mark rest of non-install executables explicitly
This commit is contained in:
parent
68df3f7dac
commit
7054b12206
@ -380,8 +380,8 @@ foreach name, source : noinst_programs
|
||||
executable(name, source,
|
||||
include_directories: incconfig,
|
||||
cpp_args: cpp_args,
|
||||
dependencies : libharfbuzz_dep,
|
||||
install : false,
|
||||
dependencies: libharfbuzz_dep,
|
||||
install: false,
|
||||
)
|
||||
endforeach
|
||||
|
||||
@ -395,8 +395,8 @@ foreach name, source : check_programs
|
||||
executable(name, source,
|
||||
include_directories: incconfig,
|
||||
cpp_args: cpp_args,
|
||||
dependencies : libharfbuzz_dep,
|
||||
install : false,
|
||||
dependencies: libharfbuzz_dep,
|
||||
install: false,
|
||||
)
|
||||
endforeach
|
||||
|
||||
@ -419,8 +419,8 @@ foreach name, source : compiled_tests
|
||||
test(name, executable(name, source,
|
||||
include_directories: incconfig,
|
||||
cpp_args: cpp_args + ['-DMAIN', '-UNDEBUG'],
|
||||
dependencies : libharfbuzz_dep,
|
||||
install : false,
|
||||
dependencies: libharfbuzz_dep,
|
||||
install: false,
|
||||
))
|
||||
endforeach
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user