meson.build 796 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
neighbor_plugins_sources = []
found_neighbor_plugin = false

if smbclient_dep.found()
  neighbor_plugins_sources += 'SmbclientNeighborPlugin.cxx'
  found_neighbor_plugin = true
endif

if enable_udisks
  neighbor_plugins_sources += 'UdisksNeighborPlugin.cxx'
  found_neighbor_plugin = true
endif

if upnp_dep.found()
  neighbor_plugins_sources += 'UpnpNeighborPlugin.cxx'
  found_neighbor_plugin = true
endif

if not found_neighbor_plugin
  subdir_done()
endif

neighbor_plugins = static_library(
  'neighbor_plugins',
  neighbor_plugins_sources,
  include_directories: inc,
  dependencies: [
28
    log_dep,
29 30 31 32 33 34 35 36 37 38 39 40 41
    dbus_dep,
    smbclient_dep,
    upnp_dep,
  ],
)

neighbor_plugins_dep = declare_dependency(
  link_with: neighbor_plugins,
  dependencies: [
    neighbor_api_dep,
    event_dep,
  ],
)