diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-10-19 15:47:44 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-10-24 12:05:58 +0200 |
commit | e19d2391476965d7b8e8865a766734947cc3099f (patch) | |
tree | 2ae1c6f451970a92b10b550995aecb512e38a817 /src/lib/efl/meson.build | |
parent | 5a3d79d3833a85675a26875594b5b07a99d79365 (diff) |
meson: prepare general build for the bindings
for bindings we needed a system that could be used to find all special
directories of every subsystem, for eo files headers etc.
The mechanism is documented in the root meson.build
Differential Revision: https://phab.enlightenment.org/D7180
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/meson.build | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/efl/meson.build b/src/lib/efl/meson.build index 75acef3b54..cadf14bdab 100644 --- a/src/lib/efl/meson.build +++ b/src/lib/efl/meson.build | |||
@@ -9,6 +9,7 @@ efl_header_src = [ | |||
9 | efl_src = [] | 9 | efl_src = [] |
10 | 10 | ||
11 | subdir('interfaces') | 11 | subdir('interfaces') |
12 | package_header_subdirs += 'interfaces' | ||
12 | 13 | ||
13 | efl_lib = library('efl', | 14 | efl_lib = library('efl', |
14 | efl_src, pub_eo_file_target, | 15 | efl_src, pub_eo_file_target, |
@@ -24,10 +25,8 @@ efl = declare_dependency( | |||
24 | sources : pub_eo_file_target | 25 | sources : pub_eo_file_target |
25 | ) | 26 | ) |
26 | 27 | ||
27 | install_data(pub_eo_files, | ||
28 | install_dir: join_paths(eolian_include_dir, package_version_name) | ||
29 | ) | ||
30 | |||
31 | install_headers(efl_header_src, | 28 | install_headers(efl_header_src, |
32 | install_dir : dir_package_include, | 29 | install_dir : dir_package_include, |
33 | ) | 30 | ) |
31 | |||
32 | package_eo_subdirs += ['interfaces'] | ||