2024-11-05 08:49:14 +00:00
|
|
|
blueprints = custom_target(
|
|
|
|
'blueprints',
|
|
|
|
input: files(
|
2024-11-17 10:26:40 +00:00
|
|
|
'album_carousel.blp',
|
2024-11-05 08:49:14 +00:00
|
|
|
'play_queue.blp',
|
|
|
|
'play_queue_song.blp',
|
|
|
|
'playbar.blp',
|
|
|
|
'setup.blp',
|
|
|
|
'window.blp',
|
|
|
|
),
|
|
|
|
output: [
|
2024-11-17 10:26:40 +00:00
|
|
|
'album_carousel.ui',
|
2024-11-05 08:49:14 +00:00
|
|
|
'play_queue.ui',
|
|
|
|
'play_queue_song.ui',
|
|
|
|
'playbar.ui',
|
|
|
|
'setup.ui',
|
|
|
|
'window.ui',
|
|
|
|
],
|
|
|
|
command: [
|
|
|
|
find_program('blueprint-compiler'),
|
|
|
|
'batch-compile',
|
|
|
|
'@OUTDIR@',
|
|
|
|
'@CURRENT_SOURCE_DIR@',
|
|
|
|
'@INPUT@',
|
|
|
|
],
|
|
|
|
)
|