mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
03e86d000f
Since GLib files are only meant to be built as part of GLib, config.h always exists, so the checks are more or less pointless. https://bugzilla.gnome.org/show_bug.cgi?id=793399
16 lines
388 B
Meson
16 lines
388 B
Meson
inotify_sources = [
|
|
'inotify-kernel.c',
|
|
'inotify-sub.c',
|
|
'inotify-path.c',
|
|
'inotify-missing.c',
|
|
'inotify-helper.c',
|
|
'ginotifyfilemonitor.c',
|
|
]
|
|
|
|
inotify_lib = static_library('inotify',
|
|
sources : inotify_sources,
|
|
include_directories : [configinc, glibinc, gmoduleinc],
|
|
dependencies : [gioenumtypes_dep],
|
|
pic : true,
|
|
c_args : [ '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|