| phosphor_logging_dep = dependency( |
| 'phosphor-logging', |
| fallback: ['phosphor-logging', 'phosphor_logging_dep']) |
| |
| src_includes = include_directories('.') |
| |
| fmt_dep = dependency('fmt', required: false) |
| if not fmt_dep.found() |
| fmt_opts = import('cmake').subproject_options() |
| fmt_opts.add_cmake_defines({ |
| 'CMAKE_POSITION_INDEPENDENT_CODE': 'ON', |
| 'MASTER_PROJECT': 'OFF', |
| }) |
| fmt_proj = import('cmake').subproject( |
| 'fmt', |
| options: fmt_opts, |
| required: false) |
| assert(fmt_proj.found(), 'fmtlib is required') |
| fmt_dep = fmt_proj.dependency('fmt') |
| endif |
| |
| executable( |
| 'ncsi-netlink', |
| 'argument.cpp', |
| 'ncsi_netlink_main.cpp', |
| 'ncsi_util.cpp', |
| implicit_include_directories: false, |
| include_directories: src_includes, |
| dependencies: [ |
| fmt_dep, |
| dependency('libnl-3.0'), |
| dependency('libnl-genl-3.0'), |
| phosphor_dbus_interfaces_dep, |
| phosphor_logging_dep, |
| ], |
| install: true, |
| install_dir: get_option('bindir')) |
| |
| json_dep = declare_dependency() |
| if get_option('sync-mac') |
| # nlohmann_json might not have a pkg-config. It is header only so just make |
| # sure we can access the needed symbols from the header. |
| has_json = meson.get_compiler('cpp').has_header_symbol( |
| 'nlohmann/json.hpp', |
| 'nlohmann::json::string_t', |
| required: false) |
| if not has_json |
| json_dep = dependency( |
| 'nlohmann_json', |
| fallback: ['nlohmann_json', 'nlohmann_json_dep'], |
| required: true) |
| endif |
| endif |
| |
| networkd_deps = [ |
| json_dep, |
| phosphor_dbus_interfaces_dep, |
| phosphor_logging_dep, |
| networkd_dbus_dep, |
| sdbusplus_dep, |
| dependency('sdeventplus', fallback: ['sdeventplus', 'sdeventplus_dep']), |
| dependency('stdplus', fallback: ['stdplus', 'stdplus_dep']), |
| ] |
| |
| conf_header = configure_file( |
| output: 'config.h', |
| configuration: conf_data) |
| |
| networkd_lib = static_library( |
| 'networkd', |
| conf_header, |
| 'ethernet_interface.cpp', |
| 'neighbor.cpp', |
| 'ipaddress.cpp', |
| 'netlink.cpp', |
| 'network_config.cpp', |
| 'network_manager.cpp', |
| 'system_configuration.cpp', |
| 'util.cpp', |
| 'routing_table.cpp', |
| 'config_parser.cpp', |
| 'dhcp_configuration.cpp', |
| 'vlan_interface.cpp', |
| 'rtnetlink_server.cpp', |
| 'dns_updater.cpp', |
| 'watch.cpp', |
| implicit_include_directories: false, |
| include_directories: src_includes, |
| dependencies: networkd_deps) |
| |
| networkd_dep = declare_dependency( |
| sources: conf_header, |
| dependencies: networkd_deps, |
| include_directories: src_includes, |
| link_with: networkd_lib) |
| |
| executable( |
| 'phosphor-network-manager', |
| 'network_manager_main.cpp', |
| implicit_include_directories: false, |
| dependencies: networkd_dep, |
| install: true, |
| install_dir: get_option('bindir')) |
| |
| if (get_option('hyp-nw-config') == true) |
| subdir('ibm') |
| endif |