Commit 5123cea3 authored by Nirbheek Chauhan's avatar Nirbheek Chauhan

meson: Add agent include dir to uninstalled pkgconfig file

Meson picks up the includedirs from the library target that it is
building the pkgconfig file for. Since libnice's headers are split
into the nice/ and agent/ subdirs, we need to add agent/ to
include_directories: so that it's automatically added to the
uninstalled pkgconfig file by Meson.
parent e451a6cc
......@@ -22,6 +22,8 @@ endif
libnice = library('nice',
link_whole: [libagent, libsocket, libstun, librandom],
dependencies: nice_deps,
# Add agent include to uninstalled pkgconfig file
include_directories: agent_include,
version : libversion,
soversion : soversion,
vs_module_defs: libnice_def,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment