mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
a4483644e8
`gobject-visibility.h` is also needed at build time. To reproduce the error, just run `ninja gio/kqueue/libkqueue.a`
20 lines
421 B
Meson
20 lines
421 B
Meson
kqueue_sources = [
|
|
'gkqueuefilemonitor.c',
|
|
'kqueue-helper.c',
|
|
'kqueue-missing.c',
|
|
'dep-list.c',
|
|
]
|
|
|
|
kqueue_lib = static_library('kqueue',
|
|
sources : [kqueue_sources],
|
|
include_directories : [configinc, glibinc],
|
|
dependencies : [
|
|
gioenumtypes_dep,
|
|
libglib_dep,
|
|
libgobject_dep,
|
|
gmodule_inc_dep,
|
|
],
|
|
gnu_symbol_visibility : 'hidden',
|
|
pic : true,
|
|
c_args : [gio_c_args, gio_c_args_internal])
|