libsysprof-ui: move ui headers

This commit is contained in:
Christian Hergert
2021-10-01 13:41:25 -07:00
parent 50def59469
commit b0cfa7632e
2 changed files with 3 additions and 2 deletions

View File

@ -120,7 +120,7 @@ libsysprof_ui_dep = declare_dependency(
pkgconfig.generate(
libsysprof_ui,
subdirs: [ sysprof_header_subdir ],
subdirs: [ sysprof_ui_header_subdir ],
description: 'The UI library for GTK applications embedding sysprof',
install_dir: join_paths(get_option('libdir'), 'pkgconfig'),
requires: [ 'gio-2.0', 'gtk4' ],
@ -130,6 +130,6 @@ pkgconfig.generate(
],
)
install_headers(libsysprof_ui_public_headers, subdir: sysprof_header_subdir)
install_headers(libsysprof_ui_public_headers, subdir: sysprof_ui_header_subdir)
endif

View File

@ -1,4 +1,5 @@
sysprof_header_subdir = 'sysprof-@0@'.format(libsysprof_api_version)
sysprof_ui_header_subdir = 'sysprof-ui-@0@'.format(libsysprof_ui_api_version)
sysprof_version_conf = configuration_data()
sysprof_version = meson.project_version().split('.')