aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-24 12:04:30 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-24 12:04:30 +0200
commit16693020019e7dae79d1290fc8a5672e057fcac3 (patch)
tree80e4667edad7bbddcbf408cb3cf7ac102de17804 /src/transport
parent757fe39278b2f3f29459f33c5ec41f0181142e18 (diff)
downloadgnunet-16693020019e7dae79d1290fc8a5672e057fcac3.tar.gz
gnunet-16693020019e7dae79d1290fc8a5672e057fcac3.zip
BUILD: meson install more files
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/meson.build39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/transport/meson.build b/src/transport/meson.build
index 12a86aaee..12ecb9f3b 100644
--- a/src/transport/meson.build
+++ b/src/transport/meson.build
@@ -14,6 +14,7 @@ libgnunettransportmonitor_src = ['transport_api2_monitor.c']
14gnunetservicetransport_src = ['gnunet-service-tng.c'] 14gnunetservicetransport_src = ['gnunet-service-tng.c']
15gnunetcommunicatortcp_src = ['gnunet-communicator-tcp.c'] 15gnunetcommunicatortcp_src = ['gnunet-communicator-tcp.c']
16gnunetcommunicatorudp_src = ['gnunet-communicator-udp.c'] 16gnunetcommunicatorudp_src = ['gnunet-communicator-udp.c']
17gnunetcommunicatorunix_src = ['gnunet-communicator-unix.c']
17 18
18configure_file(input : 'transport.conf.in', 19configure_file(input : 'transport.conf.in',
19 output : 'transport.conf', 20 output : 'transport.conf',
@@ -90,3 +91,41 @@ executable ('gnunet-service-transport',
90 install: true, 91 install: true,
91 install_dir: get_option('libdir') / 'gnunet' / 'libexec') 92 install_dir: get_option('libdir') / 'gnunet' / 'libexec')
92 93
94executable ('gnunet-communicator-unix',
95 gnunetcommunicatorunix_src,
96 dependencies: [libgnunettransportcommunicator_dep,
97 libgnunetpeerstore_dep,
98 libgnunetstatistics_dep,
99 libgnunetnt_dep,
100 libgnunetnat_dep,
101 gcrypt_dep,
102 libgnunetutil_dep],
103 include_directories: [incdir, configuration_inc],
104 install: true,
105 install_dir: get_option('libdir') / 'gnunet' / 'libexec')
106executable ('gnunet-communicator-udp',
107 gnunetcommunicatorudp_src,
108 dependencies: [libgnunettransportcommunicator_dep,
109 libgnunettransportapplication_dep,
110 libgnunetpeerstore_dep,
111 libgnunetstatistics_dep,
112 libgnunetnt_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')
119executable ('gnunet-communicator-tcp',
120 gnunetcommunicatortcp_src,
121 dependencies: [libgnunettransportcommunicator_dep,
122 libgnunetpeerstore_dep,
123 libgnunetstatistics_dep,
124 libgnunetnt_dep,
125 libgnunetnat_dep,
126 gcrypt_dep,
127 libgnunetutil_dep],
128 include_directories: [incdir, configuration_inc],
129 install: true,
130 install_dir: get_option('libdir') / 'gnunet' / 'libexec')
131