
When building libnice with glib fallback, its 'libgio_dep' internal dependency doesn't provide all needed include and library search paths. To avoid unresolved header files and linker errors in such case, 'libglib_dep', 'libmodule_dep' and 'libgobject_dep' from glib submodule must be pulled in as well. The problem should be fixed in GLib 2.60.
8 lines
251 B
Meson
8 lines
251 B
Meson
examples = ['simple-example', 'threaded-example', 'sdp-example']
|
|
|
|
foreach ex : examples
|
|
executable(ex, '@0@.c'.format(ex),
|
|
include_directories: nice_incs,
|
|
dependencies: gio_deps + [libnice_dep, gupnp_igd_dep],
|
|
install: false)
|
|
endforeach
|