summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel@osg.samsung.com>2017-12-31 11:04:43 +0000
committerMarcel Hollerbach <marcel@osg.samsung.com>2018-03-27 17:50:02 +0100
commit0556e736dc29deaf7be1e8383ca3147c40cd8a04 (patch)
tree7ccc5c8e6a492ee4fb3f540876f09a523bf02cc4
parent29b455518531086c551af3d5161b909946d6ba24 (diff)
downloadefl-0556e736dc29deaf7be1e8383ca3147c40cd8a04.tar.gz
meson: efl now installs all headers correctly
-rw-r--r--src/lib/efl/interfaces/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/efl/interfaces/meson.build b/src/lib/efl/interfaces/meson.build
index 9f4a331876..dd593fefdb 100644
--- a/src/lib/efl/interfaces/meson.build
+++ b/src/lib/efl/interfaces/meson.build
@@ -20,7 +20,7 @@ foreach eo_file : pub_legacy_eo_files
input : eo_file,
output : [eo_file + '.h', eo_file + '.legacy.h',],
install : true,
- install_dir : dir_package_include,
+ install_dir : join_paths(dir_package_include, 'interfaces'),
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'),
@@ -109,7 +109,7 @@ foreach eo_file : pub_eo_files
input : eo_file,
output : [eo_file + '.h'],
install : true,
- install_dir : dir_package_include,
+ install_dir : join_paths(dir_package_include, 'interfaces'),
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'),
@@ -129,7 +129,7 @@ foreach eo_file : pub_eo_types_files
input : eo_file,
output : [eo_file + '.h'],
install : true,
- install_dir : dir_package_include,
+ install_dir : join_paths(dir_package_include, 'interfaces'),
command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories,
'-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'),
'-gh', '@INPUT@'])