meson: rename a few targets

this is in preparation for the next commit
This commit is contained in:
Marcel Hollerbach 2018-10-31 13:02:09 +01:00
parent a040529352
commit ddb06ddc1b
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ foreach eo : eo_src
eo_file = eo + '.eo'
eo_csrc += eo + '.c'
eo_gen += custom_target('eolian_gen_' + eo_file,
eo_gen += custom_target('eolian_gen_eo_classes' + eo_file,
input : eo_file,
output : [eo_file + '.h'],
command : [eolian_gen, '-I', meson.current_source_dir(),

View File

@ -8,7 +8,7 @@ foreach eo : eo_src
eo_file = eo + '.eo'
eo_csrc += eo + '.c'
eo_gen += custom_target('eolian_gen_' + eo_file,
eo_gen += custom_target('eolian_gen_eo_inherit' + eo_file,
input : eo_file,
output : [eo_file + '.h'],
command : [eolian_gen, '-I', meson.current_source_dir(),

View File

@ -9,7 +9,7 @@ foreach eo : eo_src
eo_file = eo + '.eo'
eo_csrc += eo + '.c'
eo_gen += custom_target('eolian_gen_' + eo_file,
eo_gen += custom_target('eolian_gen_eo_multiinherit' + eo_file,
input : eo_file,
output : [eo_file + '.h'],
command : [eolian_gen, '-I', meson.current_source_dir(),