Browse Source

meson: Include various directories providing stubs before libqemuutil

Stubs are provided by libqemuutil. We want to use the generic meson
machinery to provide stubs once, instead of per sub-directories. Move
the 'subdir' calls earlier so when these directories are processed
they can add units to the global stub_ss[] source set.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20260225035739.42848-2-philmd@linaro.org>
master
Philippe Mathieu-Daudé 5 months ago
parent
commit
5b7814c0fc
  1. 16
      meson.build

16
meson.build

@ -3754,6 +3754,14 @@ subdir('authz')
subdir('crypto') subdir('crypto')
subdir('ui') subdir('ui')
subdir('gdbstub') subdir('gdbstub')
subdir('semihosting')
subdir('audio')
subdir('io')
subdir('chardev')
subdir('fsdev')
subdir('dump')
subdir('accel')
if have_system if have_system
subdir('hw') subdir('hw')
else else
@ -3799,12 +3807,6 @@ if have_system or have_user
subdir('target') subdir('target')
endif endif
subdir('audio')
subdir('io')
subdir('chardev')
subdir('fsdev')
subdir('dump')
if have_block if have_block
block_ss.add(files( block_ss.add(files(
'block.c', 'block.c',
@ -3874,11 +3876,9 @@ subdir('migration')
subdir('monitor') subdir('monitor')
subdir('net') subdir('net')
subdir('replay') subdir('replay')
subdir('semihosting')
subdir('stats') subdir('stats')
subdir('tcg') subdir('tcg')
subdir('fpu') subdir('fpu')
subdir('accel')
subdir('plugins') subdir('plugins')
subdir('ebpf') subdir('ebpf')

Loading…
Cancel
Save