Files
Notify/data/resources/meson.build
2023-10-08 15:57:09 +02:00

22 lines
512 B
Meson

# Resources
blueprints = custom_target('blueprints',
input: files(
'ui/window.blp',
'ui/shortcuts.blp',
'ui/subscription_info_dialog.blp',
),
output: '.',
command: [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],
)
resources = gnome.compile_resources(
'resources',
'resources.gresource.xml',
gresource_bundle: true,
source_dir: meson.current_build_dir(),
install: true,
install_dir: pkgdatadir,
dependencies: blueprints,
)