mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-05 18:40:58 +01:00
Apparently this is needed for building PE libraries. It makes no difference on Linux, where linking of the GLib symbols in the inotify file monitor code is done lazily. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://gitlab.gnome.org/GNOME/glib/issues/1201
16 lines
417 B
Meson
16 lines
417 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, libglib_dep, libgobject_dep],
|
|
pic : true,
|
|
c_args : [ '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|