aboutsummaryrefslogtreecommitdiff
path: root/src/nt
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-20 14:41:29 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-20 14:41:29 +0200
commit78bc6d9b5356af42c1fe4899689a0cc84d6ae0a8 (patch)
treedbea7dfe0721fc3f752776c3445c435d875e984b /src/nt
parenta38e8d953116618e1dba7c13e32dcf0ab9c3da9d (diff)
downloadgnunet-78bc6d9b5356af42c1fe4899689a0cc84d6ae0a8.tar.gz
gnunet-78bc6d9b5356af42c1fe4899689a0cc84d6ae0a8.zip
BUILD: Start experimental meson build
Diffstat (limited to 'src/nt')
-rw-r--r--src/nt/meson.build13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/nt/meson.build b/src/nt/meson.build
new file mode 100644
index 000000000..cd0b757ac
--- /dev/null
+++ b/src/nt/meson.build
@@ -0,0 +1,13 @@
1libgnunetnt_src = ['nt.c']
2
3if gnunet_monolith == false
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 + gnunetservicent_src
11 gnunet_src += 'nt/' + p
12 endforeach
13endif