You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
282 B
13 lines
282 B
3 years ago
|
deps_custom = declare_dependency(link_args: [] )
|
||
|
if host_os == 'openbsd' or host_os == 'freebsd' or host_os == 'dragonfly'
|
||
|
deps_custom = declare_dependency(link_args : [ '-lkvm' ])
|
||
|
endif
|
||
|
|
||
|
module_deps += deps_custom
|
||
|
|
||
|
src = files(
|
||
|
'e_mod_main.c',
|
||
|
'process.c',
|
||
|
'process.h',
|
||
|
)
|