mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
16 lines
373 B
Meson
16 lines
373 B
Meson
|
kqueue_sources = [
|
||
|
'gkqueuefilemonitor.c',
|
||
|
'kqueue-helper.c',
|
||
|
'kqueue-thread.c',
|
||
|
'kqueue-sub.c',
|
||
|
'kqueue-missing.c',
|
||
|
'kqueue-utils.c',
|
||
|
'kqueue-exclusions.c',
|
||
|
'dep-list.c',
|
||
|
]
|
||
|
|
||
|
kqueue_lib = static_library('kqueue',
|
||
|
sources : kqueue_sources,
|
||
|
include_directories : inc_dirs,
|
||
|
c_args : [ '-DHAVE_CONFIG_H', '-fPIC', '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|