60 lines
1.7 KiB
Meson
60 lines
1.7 KiB
Meson
blueprints = custom_target('blueprints',
|
|
input: files(
|
|
'gtk/help-overlay.blp',
|
|
'gtk/window.blp',
|
|
'gtk/game.blp',
|
|
'gtk/preferences.blp',
|
|
'gtk/details_window.blp'
|
|
),
|
|
output: '.',
|
|
command: [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],
|
|
)
|
|
|
|
gnome.compile_resources('cartridges',
|
|
'cartridges.gresource.xml',
|
|
gresource_bundle: true,
|
|
install: true,
|
|
install_dir: pkgdatadir,
|
|
dependencies: blueprints,
|
|
)
|
|
|
|
desktop_file = i18n.merge_file(
|
|
input: 'hu.kramo.Cartridges.desktop.in',
|
|
output: 'hu.kramo.Cartridges.desktop',
|
|
type: 'desktop',
|
|
po_dir: '../po',
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'applications')
|
|
)
|
|
|
|
desktop_utils = find_program('desktop-file-validate', required: false)
|
|
if desktop_utils.found()
|
|
test('Validate desktop file', desktop_utils, args: [desktop_file])
|
|
endif
|
|
|
|
appstream_file = i18n.merge_file(
|
|
input: 'hu.kramo.Cartridges.metainfo.xml.in',
|
|
output: 'hu.kramo.Cartridges.metainfo.xml',
|
|
po_dir: '../po',
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'metainfo')
|
|
)
|
|
|
|
appstream_util = find_program('appstream-util', required: false)
|
|
if appstream_util.found()
|
|
test('Validate appstream file', appstream_util, args: ['validate', appstream_file])
|
|
endif
|
|
|
|
install_data('hu.kramo.Cartridges.gschema.xml',
|
|
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
|
|
)
|
|
|
|
compile_schemas = find_program('glib-compile-schemas', required: false)
|
|
if compile_schemas.found()
|
|
test('Validate schema file',
|
|
compile_schemas,
|
|
args: ['--strict', '--dry-run', meson.current_source_dir()])
|
|
endif
|
|
|
|
subdir('icons')
|