build - new meson git added in as a keyword, so avoid it

use input instead of in, and output instead of out to avoid the new
keyword and be consistent.
This commit is contained in:
Carsten Haitzler 2018-10-18 12:43:37 +01:00 committed by Boris Faure
parent aa0f968860
commit 33ff0d8d83
1 changed files with 6 additions and 6 deletions

View File

@ -22,16 +22,16 @@ edje_install_dir = join_paths(get_option('datadir'),
meson.project_name(), 'themes')
foreach to_compile: edje_to_compile
out = to_compile[0] + '.edj'
in = to_compile[0] + '.edc'
edj_targets += [custom_target(out,
output = to_compile[0] + '.edj'
input = to_compile[0] + '.edc'
edj_targets += [custom_target(output,
install:true,
install_dir: edje_install_dir,
depend_files: files(to_compile[1]),
command: command,
input: in,
output: out)]
edj_files += [join_paths(edje_install_dir, out)]
input: input,
output: output)]
edj_files += [join_paths(edje_install_dir, output)]
endforeach
subdir('nyanology')