accel: build qtest modular
Allow building accelerators as module. Start with qtest as first user. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Jose R. Ziviani <jziviani@suse.de> Message-Id: <20210624103836.2382472-28-kraxel@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
a05ca2d416
commit
c94a7b8892
@ -1,6 +1,2 @@
|
|||||||
qtest_ss = ss.source_set()
|
qtest_module_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_POSIX'],
|
||||||
qtest_ss.add(files(
|
if_true: files('qtest.c'))
|
||||||
'qtest.c',
|
|
||||||
))
|
|
||||||
|
|
||||||
specific_ss.add_all(when: ['CONFIG_SOFTMMU', 'CONFIG_POSIX'], if_true: qtest_ss)
|
|
||||||
|
@ -2000,6 +2000,9 @@ trace_ss = ss.source_set()
|
|||||||
user_ss = ss.source_set()
|
user_ss = ss.source_set()
|
||||||
util_ss = ss.source_set()
|
util_ss = ss.source_set()
|
||||||
|
|
||||||
|
# accel modules
|
||||||
|
qtest_module_ss = ss.source_set()
|
||||||
|
|
||||||
modules = {}
|
modules = {}
|
||||||
target_modules = {}
|
target_modules = {}
|
||||||
hw_arch = {}
|
hw_arch = {}
|
||||||
@ -2238,6 +2241,9 @@ specific_ss.add_all(when: 'CONFIG_LINUX_USER', if_true: linux_user_ss)
|
|||||||
subdir('tests/qtest/libqos')
|
subdir('tests/qtest/libqos')
|
||||||
subdir('tests/qtest/fuzz')
|
subdir('tests/qtest/fuzz')
|
||||||
|
|
||||||
|
# accel modules
|
||||||
|
target_modules += { 'accel' : { 'qtest': qtest_module_ss }}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Library dependencies #
|
# Library dependencies #
|
||||||
########################
|
########################
|
||||||
|
Loading…
Reference in New Issue
Block a user