mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
cf93b27ceb
Properly define GLIB/GOBJECT_STATIC_COMPILATION when static build is enabled. Use library() instead of shared_library() to allow selecting static builds. https://bugzilla.gnome.org/show_bug.cgi?id=784995
12 lines
343 B
Meson
12 lines
343 B
Meson
libtestmodulea = library('testmodulea', 'test-module-a.c',
|
|
install : false,
|
|
dependencies : [libglib_dep, libgobject_dep, libgmodule_dep, libgio_dep],
|
|
c_args : [ ]
|
|
)
|
|
|
|
libtestmoduleb = library('testmoduleb', 'test-module-b.c',
|
|
install : false,
|
|
dependencies : [libglib_dep, libgobject_dep, libgmodule_dep, libgio_dep],
|
|
c_args : [ ]
|
|
)
|