mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
19 lines
480 B
Meson
19 lines
480 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',
|
|
# gkqueuefilemonitor.h includes gio.h which includes this
|
|
gioenumtypes_h,
|
|
]
|
|
|
|
kqueue_lib = static_library('kqueue',
|
|
sources : kqueue_sources,
|
|
include_directories : [configinc, glibinc, gmoduleinc],
|
|
pic : true,
|
|
c_args : [ '-DHAVE_CONFIG_H', '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|