aboutsummaryrefslogtreecommitdiff
path: root/src/nt
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-23 21:34:09 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-23 21:34:09 +0200
commit1ea50dc3c613a55ea3184b17b20b464be9a14b51 (patch)
treed4a44af81a842a4fe15b2d4c7a9ac863411af1f3 /src/nt
parent8ac5695b5e44e64d19ccc9ec1c3bc83849ec39c3 (diff)
downloadgnunet-1ea50dc3c613a55ea3184b17b20b464be9a14b51.tar.gz
gnunet-1ea50dc3c613a55ea3184b17b20b464be9a14b51.zip
BUILD: Meson - install yet more files
Diffstat (limited to 'src/nt')
-rw-r--r--src/nt/meson.build21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/nt/meson.build b/src/nt/meson.build
index 981e1587d..5e018a4be 100644
--- a/src/nt/meson.build
+++ b/src/nt/meson.build
@@ -1,13 +1,20 @@
1libgnunetnt_src = ['nt.c'] 1libgnunetnt_src = ['nt.c']
2 2
3if get_option('monolith') == false 3if get_option('monolith')
4 libgnunetnt = library('gnunetnt',
5 libgnunetnt_src,
6 dependencies: libgnunetutil_dep,
7 include_directories: [incdir, configuration_inc])
8 libgnunetnt_dep = declare_dependency(link_with : libgnunetnt)
9else
10 foreach p : libgnunetnt_src 4 foreach p : libgnunetnt_src
11 gnunet_src += 'nt/' + p 5 gnunet_src += 'nt/' + p
12 endforeach 6 endforeach
7 subdir_done()
13endif 8endif
9
10libgnunetnt = library('gnunetnt',
11 libgnunetnt_src,
12 soversion: '0.0.0',
13 dependencies: libgnunetutil_dep,
14 include_directories: [incdir, configuration_inc],
15 install: true,
16 install_dir: get_option('libdir'))
17libgnunetnt_dep = declare_dependency(link_with : libgnunetnt)
18pkg.generate(libgnunetnt, url: 'https://www.gnunet.org',
19 description : 'Provides API for accessing GNUnet NT')
20