aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-29 16:21:12 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-29 16:21:12 +0200
commit842935e2522d97d80ec2d63ec01838afe65dba96 (patch)
treea365478b69aaee0d17288edb142e6b3fb3c3024c /src/transport
parent398bb943478f9acfedb49c34bd6c483373ab2023 (diff)
downloadgnunet-842935e2522d97d80ec2d63ec01838afe65dba96.tar.gz
gnunet-842935e2522d97d80ec2d63ec01838afe65dba96.zip
BUILD: Meson add more build targets
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/meson.build16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/transport/meson.build b/src/transport/meson.build
index 9a3a2ebd0..a57dc968a 100644
--- a/src/transport/meson.build
+++ b/src/transport/meson.build
@@ -22,6 +22,11 @@ configure_file(input : 'transport.conf.in',
22 install: true, 22 install: true,
23 install_dir: pkgcfgdir) 23 install_dir: pkgcfgdir)
24 24
25configure_file(input : 'gnunet-transport-certificate-creation',
26 output : 'gnuent-transport-certificate-creation.in',
27 configuration : cdata,
28 install: true,
29 install_dir: get_option('bindir'))
25 30
26if get_option('monolith') 31if get_option('monolith')
27 foreach p : libgnunettransport_src #+ libgnunettransportapplication_src + libgnunettransportcore_src + libgnunettransportcommunicator_src + libgnunettransportmonitor_src + gnunetservicetransport_src 32 foreach p : libgnunettransport_src #+ libgnunettransportapplication_src + libgnunettransportcore_src + libgnunettransportcommunicator_src + libgnunettransportmonitor_src + gnunetservicetransport_src
@@ -189,3 +194,14 @@ executable ('gnunet-communicator-tcp',
189 install: true, 194 install: true,
190 install_dir: get_option('libdir') / 'gnunet' / 'libexec') 195 install_dir: get_option('libdir') / 'gnunet' / 'libexec')
191 196
197executable ('gnunet-transport',
198 ['gnunet-transport.c'],
199 dependencies: [libgnunettransportcommunicator_dep,
200 libgnunethello_dep,
201 libgnunettransport_dep,
202 libgnunetpeerstore_dep,
203 libgnunetutil_dep],
204 include_directories: [incdir, configuration_inc],
205 install: true,
206 install_dir: get_option('bindir'))
207