You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
549 B
16 lines
549 B
edje_cmd = find_program('edje_cc') |
|
|
|
cmd = [ edje_cmd, |
|
'-id', join_paths(meson.source_root(), 'data', 'images'), |
|
'-id', join_paths(meson.source_root(), 'data', 'icons'), |
|
'-sd', join_paths(meson.source_root(), 'data', 'sounds'), |
|
'@INPUT@', '@OUTPUT@' |
|
] |
|
|
|
custom_target('evisum.edj', |
|
input : 'evisum.edc', |
|
output : 'evisum.edj', |
|
command : cmd, |
|
install_dir : join_paths(dir_data, 'evisum', 'themes'), |
|
install : true |
|
)
|
|
|