Init with GTK Rust Template

This commit is contained in:
ranfdev
2023-07-23 18:15:23 +02:00
commit c3de2224a8
34 changed files with 1335 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Resources
blueprints = custom_target('blueprints',
input: files(
'ui/window.blp',
'ui/shortcuts.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,
)