meson.build (2c13c574418e4b17974f7ef71d200ac064fb8d4b) | meson.build (1f2146f7ca0f04afc62c4a170ec78bd030f3e72f) |
---|---|
1subdir('bench') 2subdir('qemu-iotests') 3 4test_qapi_outputs = [ 5 'qapi-builtin-types.c', 6 'qapi-builtin-types.h', 7 'qapi-builtin-visit.c', 8 'qapi-builtin-visit.h', --- 54 unchanged lines hidden (view full) --- 63 64libtestqapi = static_library('testqapi', sources: [genh, test_qapi_sources]) 65testqapi = declare_dependency(link_with: libtestqapi, sources: [genh, test_qapi_headers]) 66 67test_deps = { 68 'test-qht-par': qht_bench, 69} 70 | 1subdir('bench') 2subdir('qemu-iotests') 3 4test_qapi_outputs = [ 5 'qapi-builtin-types.c', 6 'qapi-builtin-types.h', 7 'qapi-builtin-visit.c', 8 'qapi-builtin-visit.h', --- 54 unchanged lines hidden (view full) --- 63 64libtestqapi = static_library('testqapi', sources: [genh, test_qapi_sources]) 65testqapi = declare_dependency(link_with: libtestqapi, sources: [genh, test_qapi_headers]) 66 67test_deps = { 68 'test-qht-par': qht_bench, 69} 70 |
71if have_tools and have_vhost_user and 'CONFIG_LINUX' in config_host | 71if have_tools and have_vhost_user and targetos == 'linux' |
72 executable('vhost-user-bridge', 73 sources: files('vhost-user-bridge.c'), 74 dependencies: [qemuutil, vhost_user]) 75endif 76 77subdir('decode') 78 79if 'CONFIG_TCG' in config_all 80 subdir('fp') 81endif 82 83if get_option('plugins') 84 subdir('plugin') 85endif 86 87subdir('unit') 88subdir('qapi-schema') 89subdir('qtest') 90subdir('migration') | 72 executable('vhost-user-bridge', 73 sources: files('vhost-user-bridge.c'), 74 dependencies: [qemuutil, vhost_user]) 75endif 76 77subdir('decode') 78 79if 'CONFIG_TCG' in config_all 80 subdir('fp') 81endif 82 83if get_option('plugins') 84 subdir('plugin') 85endif 86 87subdir('unit') 88subdir('qapi-schema') 89subdir('qtest') 90subdir('migration') |