mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26: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.
10 lines
361 B
Meson
10 lines
361 B
Meson
# Just a skeleton lib for backwards compatibility since all the functionaliy
|
|
# has been moved into glib now
|
|
libgthread = shared_library('gthread-2.0',
|
|
sources : [ 'gthread-impl.c' ],
|
|
version : library_version,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [libglib_dep],
|
|
c_args : ['-DG_LOG_DOMAIN="GThread"' ] + glib_hidden_visibility_args)
|