forked from enlightenment/rage
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.
13 lines
455 B
13 lines
455 B
cmd = [ edje_cmd, |
|
'-id', join_paths(meson.source_root(), 'data' , 'themes', 'images'), |
|
'@INPUT@', '@OUTPUT@' |
|
] |
|
src = 'default' |
|
custom_target(src + '.edj', |
|
input : src + '.edc', |
|
output : src + '.edj', |
|
command : cmd, |
|
install_dir : join_paths(dir_data, proj, 'themes'), |
|
install_mode : 'rw-r--r--', |
|
install : true |
|
)
|
|
|