diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-12-03 18:49:47 +0100 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2018-12-06 12:06:16 -0500 |
commit | 907ee1a497417874c243a7a99e3ed4e8c3a234cd (patch) | |
tree | 1206bd8af1737291be15c243221081be4dee167c /src/lib/emotion/meson.build | |
parent | 3b162458ffb72e0bd484d4fa0445e78dd634fb56 (diff) |
meson: use eolian_gen with -S
this ensures that eolian does not parse installed .eo files
Differential Revision: https://phab.enlightenment.org/D7405
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/emotion/meson.build b/src/lib/emotion/meson.build index 1caea9dcee..ad25dc65a6 100644 --- a/src/lib/emotion/meson.build +++ b/src/lib/emotion/meson.build | |||
@@ -12,7 +12,7 @@ foreach eo_file : pub_legacy_eo_files | |||
12 | depfile : eo_file + '.d', | 12 | depfile : eo_file + '.d', |
13 | install : true, | 13 | install : true, |
14 | install_dir : dir_package_include, | 14 | install_dir : dir_package_include, |
15 | command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories, | 15 | command : eolian_gen + [ '-I', meson.current_source_dir(), eolian_include_directories, |
16 | '-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'), | 16 | '-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'), |
17 | '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'), | 17 | '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'), |
18 | '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'), | 18 | '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'), |
@@ -23,7 +23,7 @@ foreach eo_file : pub_legacy_eo_files | |||
23 | depfile : eo_file + '.legacy.d', | 23 | depfile : eo_file + '.legacy.d', |
24 | install : true, | 24 | install : true, |
25 | install_dir : dir_package_include, | 25 | install_dir : dir_package_include, |
26 | command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories, | 26 | command : eolian_gen + [ '-I', meson.current_source_dir(), eolian_include_directories, |
27 | '-o', 'l:' + join_paths(meson.current_build_dir(), eo_file + '.legacy.h'), | 27 | '-o', 'l:' + join_paths(meson.current_build_dir(), eo_file + '.legacy.h'), |
28 | '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.legacy.d'), | 28 | '-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.legacy.d'), |
29 | '-gld', '@INPUT@']) | 29 | '-gld', '@INPUT@']) |