]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/meson.build
bsd-user: Add freebsd_exec_common and do_freebsd_procctl to qemu.h.
[mirror_qemu.git] / bsd-user / meson.build
CommitLineData
dda2da6c
WL
1if not have_bsd_user
2 subdir_done()
3endif
4
3363615a
RH
5bsd_user_ss = ss.source_set()
6
05a24871 7common_user_inc += include_directories('include')
bbf15aaf 8
b309c321
MAL
9bsd_user_ss.add(files(
10 'bsdload.c',
11 'elfload.c',
12 'main.c',
13 'mmap.c',
14 'signal.c',
15 'strace.c',
b309c321
MAL
16 'uaccess.c',
17))
da07e694
WL
18
19# Pull in the OS-specific build glue, if any
20subdir(targetos)
3363615a
RH
21
22specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)