mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
593 B
Meson
30 lines
593 B
Meson
if not have_bsd_user
|
|
subdir_done()
|
|
endif
|
|
|
|
bsd_user_ss = ss.source_set()
|
|
|
|
common_user_inc += include_directories('include')
|
|
|
|
bsd_user_ss.add(files(
|
|
'bsd-mem.c',
|
|
'bsd-proc.c',
|
|
'bsdload.c',
|
|
'elfload.c',
|
|
'main.c',
|
|
'mmap.c',
|
|
'signal.c',
|
|
'strace.c',
|
|
'uaccess.c',
|
|
))
|
|
|
|
elf = cc.find_library('elf', required: true)
|
|
procstat = cc.find_library('procstat', required: true)
|
|
kvm = cc.find_library('kvm', required: true)
|
|
bsd_user_ss.add(elf, procstat, kvm)
|
|
|
|
# Pull in the OS-specific build glue, if any
|
|
subdir(host_os)
|
|
|
|
specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)
|