aboutsummaryrefslogtreecommitdiff
path: root/src/block
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/block
parenta38e8d953116618e1dba7c13e32dcf0ab9c3da9d (diff)
downloadgnunet-78bc6d9b5356af42c1fe4899689a0cc84d6ae0a8.tar.gz
gnunet-78bc6d9b5356af42c1fe4899689a0cc84d6ae0a8.zip
BUILD: Start experimental meson build
Diffstat (limited to 'src/block')
-rw-r--r--src/block/meson.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/block/meson.build b/src/block/meson.build
new file mode 100644
index 000000000..bccddb259
--- /dev/null
+++ b/src/block/meson.build
@@ -0,0 +1,19 @@
1libgnunetblock_src = ['block.c']
2libgnunetblockgroup_src = ['bg_bf.c']
3
4if gnunet_monolith == false
5 libgnunetblock = library('gnunetblock',
6 libgnunetblock_src,
7 dependencies: libgnunetutil_dep,
8 include_directories: [incdir, configuration_inc])
9 libgnunetblock_dep = declare_dependency(link_with : libgnunetblock)
10 libgnunetblockgroup = library('gnunetblockgroup',
11 libgnunetblockgroup_src,
12 dependencies: [libgnunetutil_dep, libgnunetblock_dep],
13 include_directories: [incdir, configuration_inc])
14 libgnunetblockgroup_dep = declare_dependency(link_with : libgnunetblockgroup)
15else
16 foreach p : libgnunetblock_src + gnunetserviceblock_src
17 gnunet_src += 'block/' + p
18 endforeach
19endif