build - meson - fix build when legacy is still enabled and gen the code

meson build was not generating .legacy.h etc. files for a whole host
of classes that were depended on - add it back so the build works again.
This commit is contained in:
Carsten Haitzler 2018-10-25 00:19:46 +01:00
parent 3e7321565d
commit 9aeedc5a1c
1 changed files with 1 additions and 0 deletions

View File

@ -342,6 +342,7 @@ foreach eo_file : priv_eo_files
command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories,
'-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'),
'-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'),
'-o', 'l:' + join_paths(meson.current_build_dir(), eo_file + '.legacy.h'),
'-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'),
'-gchd', '@INPUT@'])
endforeach