meson: Install libgtk and libgdk

This commit is contained in:
Timm Bäder 2016-09-24 10:18:26 +02:00 committed by Emmanuele Bassi
parent d353924c3d
commit 092f6d5c43
4 changed files with 3 additions and 4 deletions

View File

@ -368,6 +368,7 @@ libgdk = shared_library('gdk',
c_args: ['-DHAVE_CONFIG_H', '-DGDK_COMPILATION'],
include_directories: [confinc, xinc, wlinc],
dependencies: gdk_deps,
install: true
)

View File

@ -749,8 +749,7 @@ typefuncs = custom_target(
output : 'gtktypefuncs.c',
input : gdk_headers + gtk_public_h_sources + gtk_deprecated_type_headers + gtk_private_h_sources + [gtktypebuiltins_h] + [gdkenum_h],
command: [gentypefuncs_prog, '@OUTPUT@', '@INPUT@'],
install: true,
install_dir: '.'
install: false,
)
cdata = configuration_data()
@ -841,6 +840,7 @@ libgtk = shared_library('gtk',
c_args: gtk_cargs,
include_directories: [ confinc, gdkinc, gtkinc ],
dependencies: [gtk_deps, libgdk_dep],
install: true
)
libgtk_dep = declare_dependency(

View File

@ -1,6 +1,5 @@
test_popover = executable('testpopover', 'testpopover.c', dependencies: libgtk_dep)
install_data('popover.ui', install_dir: meson.build_root())
test_cairo = executable('testcairo', 'testcairo.c', dependencies: libgtk_dep)
test_animated_resizing = executable('animated-resizing',

View File

@ -17,7 +17,6 @@ test('gtk/bitmask test', test_bitmask)
test_builder = executable('builder', 'builder.c', dependencies: libgtk_dep)
test('gtk/builder test', test_builder)
install_subdir('ui', install_dir: '.')
test_builderparser = executable(
'builderparser',
'builderparser.c',