2016-03-07 12:13:24 +01:00
|
|
|
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',
|
2016-12-20 23:37:24 +01:00
|
|
|
# gkqueuefilemonitor.h includes gio.h which includes this
|
|
|
|
gioenumtypes_h,
|
2016-03-07 12:13:24 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
kqueue_lib = static_library('kqueue',
|
|
|
|
sources : kqueue_sources,
|
2016-12-20 23:37:24 +01:00
|
|
|
include_directories : [configinc, glibinc, gmoduleinc],
|
2016-12-09 20:30:22 +01:00
|
|
|
pic : true,
|
|
|
|
c_args : [ '-DHAVE_CONFIG_H', '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|