aboutsummaryrefslogtreecommitdiff
path: root/src/block
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-21 11:08:06 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-21 11:08:06 +0200
commitd968540126df0ff56edf5668d95daad6391b12e4 (patch)
tree72f154b15e3b091581a95e14f3f23aeb3b93e813 /src/block
parentf61216c668708c0e2404904bef0de478b683e37f (diff)
downloadgnunet-d968540126df0ff56edf5668d95daad6391b12e4.tar.gz
gnunet-d968540126df0ff56edf5668d95daad6391b12e4.zip
BUILD: Towards libgnunet build
Diffstat (limited to 'src/block')
-rw-r--r--src/block/meson.build10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/block/meson.build b/src/block/meson.build
index 704f97068..aae7445ee 100644
--- a/src/block/meson.build
+++ b/src/block/meson.build
@@ -1,16 +1,20 @@
1libgnunetblock_src = ['block.c'] 1libgnunetblock_src = ['block.c']
2libgnunetblockgroup_src = ['bg_bf.c'] 2libgnunetblockgroup_src = ['bg_bf.c']
3 3
4if gnunet_monolith == false 4if get_option('monolith') == false
5 libgnunetblock = library('gnunetblock', 5 libgnunetblock = library('gnunetblock',
6 libgnunetblock_src, 6 libgnunetblock_src,
7 dependencies: libgnunetutil_dep, 7 dependencies: libgnunetutil_dep,
8 include_directories: [incdir, configuration_inc]) 8 include_directories: [incdir, configuration_inc],
9 install: true,
10 install_dir: get_option('libdir'))
9 libgnunetblock_dep = declare_dependency(link_with : libgnunetblock) 11 libgnunetblock_dep = declare_dependency(link_with : libgnunetblock)
10 libgnunetblockgroup = library('gnunetblockgroup', 12 libgnunetblockgroup = library('gnunetblockgroup',
11 libgnunetblockgroup_src, 13 libgnunetblockgroup_src,
12 dependencies: [libgnunetutil_dep, libgnunetblock_dep], 14 dependencies: [libgnunetutil_dep, libgnunetblock_dep],
13 include_directories: [incdir, configuration_inc]) 15 include_directories: [incdir, configuration_inc],
16 install: true,
17 install_dir: get_option('libdir'))
14 libgnunetblockgroup_dep = declare_dependency(link_with : libgnunetblockgroup) 18 libgnunetblockgroup_dep = declare_dependency(link_with : libgnunetblockgroup)
15else 19else
16 foreach p : libgnunetblock_src + libgnunetblockgroup_src 20 foreach p : libgnunetblock_src + libgnunetblockgroup_src