mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +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
17 lines
370 B
Meson
17 lines
370 B
Meson
xdgmime_sources = files(
|
|
'xdgmime.c',
|
|
'xdgmimealias.c',
|
|
'xdgmimecache.c',
|
|
'xdgmimeglob.c',
|
|
'xdgmimeicon.c',
|
|
'xdgmimeint.c',
|
|
'xdgmimemagic.c',
|
|
'xdgmimeparent.c',
|
|
)
|
|
|
|
xdgmime_lib = static_library('xdgmime',
|
|
sources : xdgmime_sources,
|
|
include_directories : [configinc],
|
|
pic : true,
|
|
c_args : [ '-DXDG_PREFIX=_gio_xdg' ] + glib_hidden_visibility_args)
|