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.
14 lines
439 B
14 lines
439 B
6 years ago
|
cmd = [ edje_cmd,
|
||
|
'-id', join_paths(meson.source_root(), 'data' , 'themes', 'images'),
|
||
|
'@INPUT@', '@OUTPUT@'
|
||
|
]
|
||
|
src = 'ephoto'
|
||
|
custom_target(src + '.edj',
|
||
|
input : src + '.edc',
|
||
|
output : src + '.edj',
|
||
|
command : cmd,
|
||
|
install_dir: join_paths(dir_data, proj, 'themes'),
|
||
|
install : true
|
||
|
)
|
||
|
meson.add_install_script('perms.sh')
|