mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-06 20:41:41 +00:00
22 lines
575 B
Meson
22 lines
575 B
Meson
blueprints = custom_target('blueprints',
|
|
input: files(
|
|
'error.blp',
|
|
'palette_shades.blp',
|
|
'option.blp',
|
|
'window.blp',
|
|
'app_type_dialog.blp',
|
|
'custom_css_group.blp',
|
|
'presets_manager_window.blp',
|
|
'preferences.blp',
|
|
'plugin_row.blp',
|
|
'welcome.blp',
|
|
'preset_row.blp',
|
|
'builtin_preset_row.blp',
|
|
'explore_preset_row.blp',
|
|
'repo_row.blp',
|
|
'no_plugin_pref.blp',
|
|
'share_window.blp',
|
|
),
|
|
output: '.',
|
|
command: [find_program('blueprint-compiler'), 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@']
|
|
)
|