mirror of https://gitee.com/openkylin/qemu.git
meson: add macos dependencies
There is no probing in configure, so no need to pass them as variables to meson. Do a regular meson dependency() instead. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
1d7bb6ab2c
commit
d92989aa2e
|
@ -50,6 +50,10 @@ m = cc.find_library('m', required: false)
|
|||
util = cc.find_library('util', required: false)
|
||||
socket = []
|
||||
version_res = []
|
||||
coref = []
|
||||
iokit = []
|
||||
cocoa = []
|
||||
hvf = []
|
||||
if targetos == 'windows'
|
||||
socket = cc.find_library('ws2_32')
|
||||
|
||||
|
@ -57,6 +61,11 @@ if targetos == 'windows'
|
|||
version_res = win.compile_resources('version.rc',
|
||||
depend_files: files('pc-bios/qemu-nsis.ico'),
|
||||
include_directories: include_directories('.'))
|
||||
elif targetos == 'darwin'
|
||||
coref = dependency('appleframeworks', modules: 'CoreFoundation')
|
||||
iokit = dependency('appleframeworks', modules: 'IOKit')
|
||||
cocoa = dependency('appleframeworks', modules: 'Cocoa')
|
||||
hvf = dependency('appleframeworks', modules: 'Hypervisor')
|
||||
endif
|
||||
glib = declare_dependency(compile_args: config_host['GLIB_CFLAGS'].split(),
|
||||
link_args: config_host['GLIB_LIBS'].split())
|
||||
|
|
Loading…
Reference in New Issue