13 lines
299 B
Meson
13 lines
299 B
Meson
|
blueprints = custom_target(
|
||
|
'blueprints',
|
||
|
input: files('play_queue.blp', 'setup.blp', 'window.blp'),
|
||
|
output: ['play_queue.ui', 'setup.ui', 'window.ui'],
|
||
|
command: [
|
||
|
find_program('blueprint-compiler'),
|
||
|
'batch-compile',
|
||
|
'@OUTDIR@',
|
||
|
'@CURRENT_SOURCE_DIR@',
|
||
|
'@INPUT@',
|
||
|
],
|
||
|
)
|