mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
2f29ee1735
Don't use it project-wide for building everything. Otherwise symbols for shared modules won't be exposed, e.g. in the resourceplugin used by the gio resource unit test.
17 lines
384 B
Meson
17 lines
384 B
Meson
xdgmime_sources = [
|
|
'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 : [ '-DHAVE_CONFIG_H', '-DXDG_PREFIX=_gio_xdg' ] + glib_hidden_visibility_args)
|