aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-15 12:18:41 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-15 12:18:41 +0200
commit602a4eba69481427bcc54d18d5503282c9049551 (patch)
treea5f41f7a984a8eec056e675a538f2f1c32d648dc /src/transport
parent155d1a862a117de213593a977fc2c1d10fde0325 (diff)
downloadgnunet-602a4eba69481427bcc54d18d5503282c9049551.tar.gz
gnunet-602a4eba69481427bcc54d18d5503282c9049551.zip
meson: readd transport service(tng)
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/meson.build15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/transport/meson.build b/src/transport/meson.build
index 423bfc8a5..65a2beeb3 100644
--- a/src/transport/meson.build
+++ b/src/transport/meson.build
@@ -3,7 +3,7 @@ libgnunettransportcore_src = ['transport_api2_core.c']
3libgnunettransportcommunicator_src = ['transport_api2_communication.c'] 3libgnunettransportcommunicator_src = ['transport_api2_communication.c']
4libgnunettransportmonitor_src = ['transport_api2_monitor.c'] 4libgnunettransportmonitor_src = ['transport_api2_monitor.c']
5 5
6gnunetservicetransport_src = ['gnunet-service-tng.c'] 6gnunetservicetransport_src = ['gnunet-service-transport.c']
7gnunetcommunicatortcp_src = ['gnunet-communicator-tcp.c'] 7gnunetcommunicatortcp_src = ['gnunet-communicator-tcp.c']
8gnunetcommunicatorudp_src = ['gnunet-communicator-udp.c'] 8gnunetcommunicatorudp_src = ['gnunet-communicator-udp.c']
9gnunetcommunicatorunix_src = ['gnunet-communicator-unix.c'] 9gnunetcommunicatorunix_src = ['gnunet-communicator-unix.c']
@@ -104,6 +104,19 @@ libgnunettransporttesting2 = library('gnunettransporttesting2',
104 install_dir: get_option('libdir')) 104 install_dir: get_option('libdir'))
105libgnunettransporttesting2_dep = declare_dependency(link_with : libgnunettransporttesting2) 105libgnunettransporttesting2_dep = declare_dependency(link_with : libgnunettransporttesting2)
106 106
107executable ('gnunet-service-transport',
108 gnunetservicetransport_src,
109 dependencies: [libgnunettransportcommunicator_dep,
110 libgnunetpeerstore_dep,
111 libgnunetstatistics_dep,
112 libgnunethello_dep,
113 libgnunetnat_dep,
114 gcrypt_dep,
115 libgnunetutil_dep],
116 include_directories: [incdir, configuration_inc],
117 install: true,
118 install_dir: get_option('libdir') / 'gnunet' / 'libexec')
119
107executable ('gnunet-communicator-unix', 120executable ('gnunet-communicator-unix',
108 gnunetcommunicatorunix_src, 121 gnunetcommunicatorunix_src,
109 dependencies: [libgnunettransportcommunicator_dep, 122 dependencies: [libgnunettransportcommunicator_dep,