summaryrefslogtreecommitdiff
path: root/socket
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-07-30 16:42:52 +0100
committerOlivier Crête <olivier.crete@collabora.com>2018-12-14 14:47:01 -0500
commit0e0f89d2b916dc0475787e0970bb692882ee3de2 (patch)
treee63653836a4e07fd0d54c5b2b5b52d7535d37c91 /socket
parented70ea09b6b283b25d3047443c00a14c8cb29e1a (diff)
downloadlibnice-0e0f89d2b916dc0475787e0970bb692882ee3de2.tar.gz
Add support for Meson build system
Diffstat (limited to 'socket')
-rw-r--r--socket/meson.build18
1 files changed, 18 insertions, 0 deletions
diff --git a/socket/meson.build b/socket/meson.build
new file mode 100644
index 0000000..e6da31d
--- /dev/null
+++ b/socket/meson.build
@@ -0,0 +1,18 @@
+socket_sources = [
+ 'socket.c',
+ 'udp-bsd.c',
+ 'tcp-bsd.c',
+ 'tcp-active.c',
+ 'tcp-passive.c',
+ 'pseudossl.c',
+ 'socks5.c',
+ 'http.c',
+ 'udp-turn.c',
+ 'udp-turn-over-tcp.c',
+]
+
+libsocket = static_library('socket', socket_sources,
+ c_args: ['-DG_LOG_DOMAIN="libnice-socket"'],
+ include_directories: nice_incs,
+ dependencies: nice_deps,
+ install: false)