diff options
Diffstat (limited to 'src/lib/eio/meson.build')
-rw-r--r-- | src/lib/eio/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/eio/meson.build b/src/lib/eio/meson.build index fd6902f38b..c3410d752e 100644 --- a/src/lib/eio/meson.build +++ b/src/lib/eio/meson.build | |||
@@ -10,13 +10,15 @@ foreach eo_file : pub_eo_files | |||
10 | pub_eo_file_target += custom_target('eolian_gen_' + eo_file, | 10 | pub_eo_file_target += custom_target('eolian_gen_' + eo_file, |
11 | input : eo_file, | 11 | input : eo_file, |
12 | output : [eo_file + '.h'], | 12 | output : [eo_file + '.h'], |
13 | depfile : eo_file + '.d', | ||
13 | install : true, | 14 | install : true, |
14 | install_dir : dir_package_include, | 15 | install_dir : dir_package_include, |
15 | command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories, | 16 | command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories, |
16 | '-o', 'h:' + join_paths( | 17 | '-o', 'h:' + join_paths( |
17 | meson.current_build_dir(), eo_file + '.h'), | 18 | meson.current_build_dir(), eo_file + '.h'), |
18 | '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'), | 19 | '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'), |
19 | '-gch', '@INPUT@']) | 20 | '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'), |
21 | '-gchd', '@INPUT@']) | ||
20 | endforeach | 22 | endforeach |
21 | 23 | ||
22 | pub_eo_types_files = [] | 24 | pub_eo_types_files = [] |