From 9aeedc5a1c68a5e28dcd12db5ee1856b33e19e45 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 25 Oct 2018 00:19:46 +0100 Subject: [PATCH] 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. --- src/lib/elementary/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elementary/meson.build b/src/lib/elementary/meson.build index 2b14c77853..1948e2ab9e 100644 --- a/src/lib/elementary/meson.build +++ b/src/lib/elementary/meson.build @@ -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