mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-10-31 11:36:18 +01:00
164 lines
3.2 KiB
Meson
164 lines
3.2 KiB
Meson
subdir('cmph')
|
|
|
|
girepo_gthash_lib = static_library('girepository-gthash',
|
|
sources: 'gthash.c',
|
|
c_args: gi_hidden_visibility_cflags,
|
|
dependencies: [
|
|
cmph_dep,
|
|
gobject_dep,
|
|
],
|
|
)
|
|
|
|
girepo_gthash_dep = declare_dependency(
|
|
link_with: girepo_gthash_lib,
|
|
dependencies: gobject_dep,
|
|
include_directories: include_directories('.'),
|
|
)
|
|
|
|
girepo_internals_lib = static_library('girepository-internals',
|
|
sources: [
|
|
'girmodule.c',
|
|
'girnode.c',
|
|
'giroffsets.c',
|
|
'girparser.c',
|
|
'girwriter.c',
|
|
],
|
|
c_args: gi_hidden_visibility_cflags,
|
|
dependencies: [girepo_gthash_dep, libffi_dep],
|
|
)
|
|
|
|
girepo_internals_dep = declare_dependency(
|
|
link_with: girepo_internals_lib,
|
|
dependencies: libffi_dep,
|
|
include_directories: include_directories('.'),
|
|
)
|
|
|
|
girepo_headers = [
|
|
'giarginfo.h',
|
|
'gibaseinfo.h',
|
|
'gicallableinfo.h',
|
|
'giconstantinfo.h',
|
|
'gienuminfo.h',
|
|
'gifieldinfo.h',
|
|
'gifunctioninfo.h',
|
|
'giinterfaceinfo.h',
|
|
'giobjectinfo.h',
|
|
'gipropertyinfo.h',
|
|
'giregisteredtypeinfo.h',
|
|
'girepository.h',
|
|
'girffi.h',
|
|
'gisignalinfo.h',
|
|
'gistructinfo.h',
|
|
'gitypeinfo.h',
|
|
'gitypelib.h',
|
|
'gitypes.h',
|
|
'giunioninfo.h',
|
|
'giversionmacros.h',
|
|
'givfuncinfo.h',
|
|
]
|
|
|
|
girepo_sources = [
|
|
'gdump.c',
|
|
'giarginfo.c',
|
|
'gibaseinfo.c',
|
|
'gicallableinfo.c',
|
|
'giconstantinfo.c',
|
|
'gienuminfo.c',
|
|
'gifieldinfo.c',
|
|
'gifunctioninfo.c',
|
|
'ginvoke.c',
|
|
'giinterfaceinfo.c',
|
|
'giobjectinfo.c',
|
|
'gipropertyinfo.c',
|
|
'giregisteredtypeinfo.c',
|
|
'girepository.c',
|
|
'girffi.c',
|
|
'gisignalinfo.c',
|
|
'gistructinfo.c',
|
|
'gitypeinfo.c',
|
|
'gitypelib.c',
|
|
'giunioninfo.c',
|
|
'givfuncinfo.c',
|
|
]
|
|
|
|
# Used in gir/meson.build
|
|
girepo_gir_sources = files(
|
|
'giarginfo.c',
|
|
'gibaseinfo.c',
|
|
'gicallableinfo.c',
|
|
'giconstantinfo.c',
|
|
'gienuminfo.c',
|
|
'gifieldinfo.c',
|
|
'gifunctioninfo.c',
|
|
'giinterfaceinfo.c',
|
|
'giobjectinfo.c',
|
|
'gipropertyinfo.c',
|
|
'giregisteredtypeinfo.c',
|
|
'girepository.c',
|
|
'gisignalinfo.c',
|
|
'gistructinfo.c',
|
|
'gitypeinfo.c',
|
|
'giunioninfo.c',
|
|
'givfuncinfo.c',
|
|
'giarginfo.h',
|
|
'gibaseinfo.h',
|
|
'gicallableinfo.h',
|
|
'giconstantinfo.h',
|
|
'gienuminfo.h',
|
|
'gifieldinfo.h',
|
|
'gifunctioninfo.h',
|
|
'giinterfaceinfo.h',
|
|
'giobjectinfo.h',
|
|
'gipropertyinfo.h',
|
|
'giregisteredtypeinfo.h',
|
|
'girepository.h',
|
|
'gisignalinfo.h',
|
|
'gistructinfo.h',
|
|
'gitypeinfo.h',
|
|
'gitypelib.h',
|
|
'gitypes.h',
|
|
'giunioninfo.h',
|
|
'givfuncinfo.h',
|
|
)
|
|
|
|
install_headers(girepo_headers, subdir: 'gobject-introspection-1.0')
|
|
|
|
girepo_lib = shared_library('girepository-1.0',
|
|
sources: girepo_sources,
|
|
c_args: gi_hidden_visibility_cflags + ['-DG_IREPOSITORY_COMPILATION'],
|
|
dependencies: [
|
|
gio_dep,
|
|
gmodule_dep,
|
|
girepo_internals_dep,
|
|
dependency('gio-2.0'),
|
|
],
|
|
version: '1.0.0',
|
|
install: true,
|
|
)
|
|
|
|
install_data('gdump.c',
|
|
install_dir: join_paths(get_option('datadir'), 'gobject-introspection-1.0')
|
|
)
|
|
|
|
girepo_dep = declare_dependency(
|
|
link_with: girepo_lib,
|
|
dependencies: gio_dep,
|
|
include_directories: include_directories('.'),
|
|
)
|
|
|
|
gthash_test = executable('gthash-test', 'gthash-test.c',
|
|
dependencies: girepo_gthash_dep,
|
|
)
|
|
|
|
test('gthash-test', gthash_test)
|
|
|
|
if giounix_dep.found()
|
|
executable('gi-dump-types', 'gi-dump-types.c',
|
|
dependencies: [
|
|
girepo_dep,
|
|
gmodule_dep,
|
|
giounix_dep,
|
|
]
|
|
)
|
|
endif
|