Broke up UI into seperate file, reorganisation of dirtree, added ViewStack
This commit is contained in:
27
data/resources/meson.build
Normal file
27
data/resources/meson.build
Normal file
@@ -0,0 +1,27 @@
|
||||
pkgdatadir = get_option('prefix') / get_option('datadir') / meson.project_name()
|
||||
|
||||
gnome = import('gnome')
|
||||
|
||||
blueprints = custom_target('blueprints',
|
||||
input: files(
|
||||
'ui/window.blp',
|
||||
'ui/shortcuts-dialog.blp',
|
||||
'ui/checklist.blp',
|
||||
'ui/settings.blp',
|
||||
'ui/welcome.blp',
|
||||
'ui/home.blp'
|
||||
),
|
||||
output: '.',
|
||||
command: [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT', '@CURRENT_SOURCE_DIRECTORY@' , '@INPUT@'],
|
||||
)
|
||||
|
||||
|
||||
gnome.compile_resources('gnomeframe',
|
||||
'gnomeframe.gresource.xml',
|
||||
gresource_bundle: true,
|
||||
install: true,
|
||||
install_dir: pkgdatadir,
|
||||
dependencies: blueprints,
|
||||
)
|
||||
|
||||
subdir('icons')
|
||||
Reference in New Issue
Block a user