diff options
Diffstat (limited to 'src/nt/meson.build')
-rw-r--r-- | src/nt/meson.build | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/nt/meson.build b/src/nt/meson.build deleted file mode 100644 index 9b2a97568..000000000 --- a/src/nt/meson.build +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | libgnunetnt_src = ['nt.c'] | ||
2 | |||
3 | if get_option('monolith') | ||
4 | foreach p : libgnunetnt_src | ||
5 | gnunet_src += 'nt/' + p | ||
6 | endforeach | ||
7 | subdir_done() | ||
8 | endif | ||
9 | |||
10 | libgnunetnt = library('gnunetnt', | ||
11 | libgnunetnt_src, | ||
12 | soversion: '0', | ||
13 | version: '0.0.0', | ||
14 | dependencies: libgnunetutil_dep, | ||
15 | include_directories: [incdir, configuration_inc], | ||
16 | install: true, | ||
17 | install_dir: get_option('libdir')) | ||
18 | libgnunetnt_dep = declare_dependency(link_with : libgnunetnt) | ||
19 | pkg.generate(libgnunetnt, url: 'https://www.gnunet.org', | ||
20 | description : 'Provides API for accessing GNUnet NT') | ||
21 | |||