efl/src/lib/ecore_con/meson.build

213 lines
5.6 KiB
Meson

ecore_con_deps = [buildsystem, eldbus, eet]
ecore_con_pub_deps = [eina, eo, efl, ecore]
ecore_con_ext_deps = [buildsystem_simple, dl, http_parser]
if sys_windows == true
ipv6 = true
else
ipv6 = cc.compiles('''
#include <netinet/in.h>
struct ipv6_mreq tmp;
''')
endif
if ipv6
config_h.set('HAVE_IPV6', 1)
endif
pub_eo_files = [
'efl_net_socket.eo',
'efl_net_socket_simple.eo',
'efl_net_socket_fd.eo',
'efl_net_socket_tcp.eo',
'efl_net_socket_udp.eo',
'efl_net_dialer.eo',
'efl_net_dialer_simple.eo',
'efl_net_dialer_tcp.eo',
'efl_net_dialer_udp.eo',
'efl_net_dialer_http.eo',
'efl_net_dialer_websocket.eo',
'efl_net_server.eo',
'efl_net_server_simple.eo',
'efl_net_server_fd.eo',
'efl_net_server_ip.eo',
'efl_net_server_tcp.eo',
'efl_net_server_udp.eo',
'efl_net_server_udp_client.eo',
'efl_net_socket_ssl.eo',
'efl_net_ssl_context.eo',
'efl_net_dialer_ssl.eo',
'efl_net_server_ssl.eo',
'efl_net_control_access_point.eo',
'efl_net_control_technology.eo',
'efl_net_control_manager.eo',
'efl_net_session.eo',
'efl_net_ip_address.eo',
]
if sys_windows == true
pub_eo_files += [
'efl_net_socket_windows.eo',
'efl_net_dialer_windows.eo',
'efl_net_server_windows.eo'
]
else
pub_eo_files += [
'efl_net_socket_unix.eo',
'efl_net_dialer_unix.eo',
'efl_net_server_unix.eo'
]
endif
foreach eo_file : pub_eo_files
pub_eo_file_target += custom_target('eolian_gen_' + eo_file,
input : eo_file,
output : [eo_file + '.h'],
depfile : eo_file + '.d',
install : true,
install_dir : dir_package_include,
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'),
'-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'),
'-e', 'ECORE_CON_API',
'-gchd', '@INPUT@'])
endforeach
pub_eo_types_files = [
'efl_net_types.eot',
'efl_net_http_types.eot',
'efl_net_ssl_types.eot'
]
foreach eo_file : pub_eo_types_files
pub_eo_file_target += custom_target('eolian_gen_' + eo_file,
input : eo_file,
output : [eo_file + '.h'],
depfile : eo_file + '.d',
install : true,
install_dir : dir_package_include,
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'),
'-o', 'd:' + join_paths(meson.current_build_dir(), eo_file + '.d'),
'-e', 'ECORE_CON_API',
'-gchd', '@INPUT@'])
endforeach
eolian_include_directories += ['-I', meson.current_source_dir()]
ecore_con_header_src = [
'Ecore_Con.h',
'Efl_Net.h',
'Ecore_Con_Eet.h',
'Ecore_Con_Eet_Legacy.h',
'Ecore_Con_Eet_Eo.h',
'ecore_con_eet_base_eo.h',
'ecore_con_eet_base_eo.legacy.h',
'ecore_con_eet_client_obj_eo.h',
'ecore_con_eet_client_obj_eo.legacy.h',
'ecore_con_eet_server_obj_eo.h',
'ecore_con_eet_server_obj_eo.legacy.h',
'ecore_con_api.h',
]
ecore_con_src = files([
'ecore_con_alloc.c',
'ecore_con.c',
'ecore_con_proxy_helper.c',
'ecore_con_legacy.c',
'ecore_con_eet.c',
'ecore_con_socks.c',
'ecore_con_url.c',
'ecore_con_url_curl.c',
'ecore_con_url_curl.h',
'ecore_con_private.h',
'efl_net_socket.c',
'efl_net_socket_simple.c',
'efl_net_socket_fd.c',
'efl_net_socket_tcp.c',
'efl_net_socket_udp.c',
'efl_net_dialer.c',
'efl_net_dialer_simple.c',
'efl_net_dialer_tcp.c',
'efl_net_dialer_udp.c',
'efl_net_dialer_http.c',
'efl_net_dialer_websocket.c',
'efl_net_server.c',
'efl_net_server_simple.c',
'efl_net_server_fd.c',
'efl_net_server_ip.c',
'efl_net_server_tcp.c',
'efl_net_server_udp.c',
'efl_net_server_udp_client.c',
'efl_net_socket_ssl.c',
'efl_net_ssl_context.c',
'efl_net_dialer_ssl.c',
'efl_net_server_ssl.c',
'ecore_con_local.c',
'efl_net_ip_address.c'
])
if sys_windows == true
ecore_con_src += files([
'efl_net_socket_windows.c',
'efl_net_dialer_windows.c',
'efl_net_server_windows.c'
])
else
ecore_con_src += files([
'efl_net_socket_unix.c',
'efl_net_dialer_unix.c',
'efl_net_server_unix.c'
])
endif
if get_option('network-backend') == 'none'
ecore_con_src += files([
'efl_net_control_access_point-none.c',
'efl_net_control_technology-none.c',
'efl_net_control-none.c',
'efl_net_session-none.c'
])
else
ecore_con_src += files([
'efl_net-connman.h',
'efl_net-connman.c',
'efl_net_control_access_point-connman.c',
'efl_net_control_technology-connman.c',
'efl_net_control-connman.c',
'efl_net_session-connman.c'
])
ecore_con_deps += eldbus
endif
ecore_con_ext_deps += crypto
ecore_con_lib = library('ecore_con',
ecore_con_src, pub_eo_file_target,
dependencies: [ecore_con_deps, ecore_con_ext_deps, ecore_con_pub_deps],
include_directories : config_dir,
install: true,
c_args : [package_c_args, '-DECORE_CON_BUILD'],
version : meson.project_version()
)
ecore_con = declare_dependency(
include_directories: [include_directories('.')],
link_with: ecore_con_lib,
sources : pub_eo_file_target + priv_eo_file_target,
dependencies: ecore_con_pub_deps,
)
if get_option('install-eo-files')
install_data(pub_eo_files + pub_eo_types_files,
install_dir: eolian_ecore_dir
)
endif
install_headers(ecore_con_header_src,
install_dir : dir_package_include,
)