meson: do not install namespace problem legacy files

these files are not required for the unified API, but they have
namespace problems, so for now, do not install them

Differential Revision: https://phab.enlightenment.org/D11665
This commit is contained in:
Marcel Hollerbach 2020-04-07 13:19:10 +02:00
parent 80bf4ace91
commit 8cb311357c
5 changed files with 40 additions and 27 deletions

View File

@ -92,11 +92,14 @@ ecore_audio = declare_dependency(
dependencies: ecore_audio_pub_deps,
)
if get_option('install-eo-files')
install_data(pub_eo_files + pub_eo_types_files,
install_dir: eolian_ecore_dir
)
endif
#
# Only enable that again when the namespace problems are fixed. ref T8648
#
#if get_option('install-eo-files')
# install_data(pub_eo_files + pub_eo_types_files,
# install_dir: eolian_ecore_dir
# )
#endif
install_headers(ecore_audio_header_src,
install_dir : dir_package_include,

View File

@ -34,9 +34,11 @@ foreach eo_file : pub_eo_files
'-gchd', '@INPUT@'])
endforeach
if get_option('install-eo-files')
install_data(pub_eo_files,
install_dir: join_paths(eolian_include_dir, package_version_name)
)
endif
#
# Only enable that again when the namespace problems are fixed. ref T8648
#
#if get_option('install-eo-files')
# install_data(pub_eo_files,
# install_dir: join_paths(eolian_include_dir, package_version_name)
# )
#endif

View File

@ -56,11 +56,14 @@ pub_eo_types_files = [
'ector_types.eot'
]
if get_option('install-eo-files')
install_data(ector_pub_eo_files + pub_eo_types_files,
install_dir: join_paths(eolian_include_dir, package_version_name)
)
endif
#
# Only enable that again when the namespace problems are fixed. ref T8648
#
#if get_option('install-eo-files')
# install_data(ector_pub_eo_files + pub_eo_types_files,
# install_dir: join_paths(eolian_include_dir, package_version_name)
# )
#endif
foreach eo_file : pub_eo_types_files
pub_eo_file_target += custom_target('eolian_gen_' + eo_file,

View File

@ -48,8 +48,11 @@ if cpu_sse3 == true
endif
if get_option('install-eo-files')
install_data(pub_eo_files,
install_dir: join_paths(eolian_include_dir, package_version_name)
)
endif
#
# Only enable that again when the namespace problems are fixed. ref T8648
#
#if get_option('install-eo-files')
# install_data(pub_eo_files,
# install_dir: join_paths(eolian_include_dir, package_version_name)
# )
#endif

View File

@ -109,12 +109,14 @@ eldbus = declare_dependency(
dependencies: eldbus_pub_deps,
)
if get_option('install-eo-files')
install_data(pub_eo_files + pub_eo_types_files,
install_dir: join_paths(eolian_include_dir, package_version_name)
)
endif
#
# Only enable that again when the namespace problems are fixed. ref T8648
#
#if get_option('install-eo-files')
# install_data(pub_eo_files + pub_eo_types_files,
# install_dir: join_paths(eolian_include_dir, package_version_name)
# )
#endif
install_headers(eldbus_header_src,
install_dir : dir_package_include,