aboutsummaryrefslogtreecommitdiff
path: root/src/pt
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-23 10:59:35 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-23 10:59:35 +0200
commit6c19200f206731b2cbc7e5568e9eba5af92e2ff3 (patch)
tree82828a8c1e968c8f8e995dc95f0c8b6eebe55204 /src/pt
parent31782eb2c5b6e00c2e27587d4ada897714bb63da (diff)
downloadgnunet-6c19200f206731b2cbc7e5568e9eba5af92e2ff3.tar.gz
gnunet-6c19200f206731b2cbc7e5568e9eba5af92e2ff3.zip
BUILD: Add pt and exit
Diffstat (limited to 'src/pt')
-rw-r--r--src/pt/meson.build22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/pt/meson.build b/src/pt/meson.build
new file mode 100644
index 000000000..0b6cc1818
--- /dev/null
+++ b/src/pt/meson.build
@@ -0,0 +1,22 @@
1configure_file(input : 'pt.conf',
2 output : 'pt.conf',
3 configuration : cdata,
4 install: true,
5 install_dir: pkgcfgdir)
6
7
8if get_option('monolith')
9 subdir_done()
10endif
11
12executable ('gnunet-daemon-pt',
13 ['gnunet-daemon-pt.c'],
14 dependencies: [libgnunetdns_dep,
15 libgnunetutil_dep,
16 libgnunetstatistics_dep,
17 libgnunetdht_dep,
18 libgnunetcadet_dep,
19 libgnunetvpn_dep],
20 include_directories: [incdir, configuration_inc],
21 install: true,
22 install_dir: get_option('libdir') / 'gnunet' / 'libexec')