]> git.proxmox.com Git - mirror_qemu.git/blob - block/meson.build
MAINTAINERS: Add tests/vm/*bsd to the list to get reviews on
[mirror_qemu.git] / block / meson.build
1 block_ss.add(genh)
2 block_ss.add(files(
3 'accounting.c',
4 'aio_task.c',
5 'amend.c',
6 'backup.c',
7 'copy-before-write.c',
8 'blkdebug.c',
9 'blklogwrites.c',
10 'blkverify.c',
11 'block-backend.c',
12 'block-copy.c',
13 'commit.c',
14 'copy-on-read.c',
15 'preallocate.c',
16 'progress_meter.c',
17 'create.c',
18 'crypto.c',
19 'dirty-bitmap.c',
20 'filter-compress.c',
21 'io.c',
22 'mirror.c',
23 'nbd.c',
24 'null.c',
25 'qapi.c',
26 'qcow2-bitmap.c',
27 'qcow2-cache.c',
28 'qcow2-cluster.c',
29 'qcow2-refcount.c',
30 'qcow2-snapshot.c',
31 'qcow2-threads.c',
32 'qcow2.c',
33 'quorum.c',
34 'raw-format.c',
35 'snapshot.c',
36 'throttle-groups.c',
37 'throttle.c',
38 'vhdx-endian.c',
39 'vhdx-log.c',
40 'vhdx.c',
41 'vmdk.c',
42 'vpc.c',
43 'write-threshold.c',
44 ), zstd, zlib, gnutls)
45
46 softmmu_ss.add(when: 'CONFIG_TCG', if_true: files('blkreplay.c'))
47
48 block_ss.add(when: 'CONFIG_QCOW1', if_true: files('qcow.c'))
49 block_ss.add(when: 'CONFIG_VDI', if_true: files('vdi.c'))
50 block_ss.add(when: 'CONFIG_CLOOP', if_true: files('cloop.c'))
51 block_ss.add(when: 'CONFIG_BOCHS', if_true: files('bochs.c'))
52 block_ss.add(when: 'CONFIG_VVFAT', if_true: files('vvfat.c'))
53 block_ss.add(when: 'CONFIG_DMG', if_true: files('dmg.c'))
54 block_ss.add(when: 'CONFIG_QED', if_true: files(
55 'qed-check.c',
56 'qed-cluster.c',
57 'qed-l2-cache.c',
58 'qed-table.c',
59 'qed.c',
60 ))
61 block_ss.add(when: [libxml2, 'CONFIG_PARALLELS'],
62 if_true: files('parallels.c', 'parallels-ext.c'))
63 block_ss.add(when: 'CONFIG_WIN32', if_true: files('file-win32.c', 'win32-aio.c'))
64 block_ss.add(when: 'CONFIG_POSIX', if_true: [files('file-posix.c'), coref, iokit])
65 block_ss.add(when: libiscsi, if_true: files('iscsi-opts.c'))
66 block_ss.add(when: 'CONFIG_LINUX', if_true: files('nvme.c'))
67 block_ss.add(when: 'CONFIG_REPLICATION', if_true: files('replication.c'))
68 block_ss.add(when: libaio, if_true: files('linux-aio.c'))
69 block_ss.add(when: linux_io_uring, if_true: files('io_uring.c'))
70
71 block_modules = {}
72
73 modsrc = []
74 foreach m : [
75 [curl, 'curl', files('curl.c')],
76 [glusterfs, 'gluster', files('gluster.c')],
77 [libiscsi, 'iscsi', [files('iscsi.c'), libm]],
78 [libnfs, 'nfs', files('nfs.c')],
79 [libssh, 'ssh', files('ssh.c')],
80 [rbd, 'rbd', files('rbd.c')],
81 ]
82 if m[0].found()
83 module_ss = ss.source_set()
84 module_ss.add(when: m[0], if_true: m[2])
85 if enable_modules
86 modsrc += module_ss.all_sources()
87 endif
88 block_modules += {m[1] : module_ss}
89 endif
90 endforeach
91
92 # those are not exactly regular block modules, so treat them apart
93 if 'CONFIG_DMG' in config_host
94 foreach m : [
95 [liblzfse, 'dmg-lzfse', liblzfse, 'dmg-lzfse.c'],
96 [libbzip2, 'dmg-bz2', [glib, libbzip2], 'dmg-bz2.c']
97 ]
98 if m[0].found()
99 module_ss = ss.source_set()
100 module_ss.add(when: m[2], if_true: files(m[3]))
101 block_modules += {m[1] : module_ss}
102 endif
103 endforeach
104 endif
105
106 module_block_py = find_program('../scripts/modules/module_block.py')
107 module_block_h = custom_target('module_block.h',
108 output: 'module_block.h',
109 input: modsrc,
110 command: [module_block_py, '@OUTPUT0@', modsrc])
111 block_ss.add(module_block_h)
112
113 wrapper_py = find_program('../scripts/block-coroutine-wrapper.py')
114 block_gen_c = custom_target('block-gen.c',
115 output: 'block-gen.c',
116 input: files('../include/block/block.h',
117 'coroutines.h'),
118 command: [wrapper_py, '@OUTPUT@', '@INPUT@'])
119 block_ss.add(block_gen_c)
120
121 block_ss.add(files('stream.c'))
122
123 softmmu_ss.add(files('qapi-sysemu.c'))
124
125 subdir('export')
126 subdir('monitor')
127
128 modules += {'block': block_modules}