aboutsummaryrefslogtreecommitdiff
path: root/src/revocation
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-20 22:43:41 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-20 22:43:41 +0200
commit6fabc12aab81110f2cc21f4eaeb21f46e8b8c5f2 (patch)
tree53af6aeb4505ff67f2487bb62eece440ee8c7ada /src/revocation
parentc41ad6b9eeae0863b63022238186ec156fe98395 (diff)
downloadgnunet-6fabc12aab81110f2cc21f4eaeb21f46e8b8c5f2.tar.gz
gnunet-6fabc12aab81110f2cc21f4eaeb21f46e8b8c5f2.zip
BUILD: Add more subsystems to meson build
Diffstat (limited to 'src/revocation')
-rw-r--r--src/revocation/meson.build25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/revocation/meson.build b/src/revocation/meson.build
new file mode 100644
index 000000000..33dcab90b
--- /dev/null
+++ b/src/revocation/meson.build
@@ -0,0 +1,25 @@
1libgnunetrevocation_src = ['revocation_api.c']
2
3gnunetservicerevocation_src = ['gnunet-service-revocation.c']
4
5
6if gnunet_monolith == false
7 libgnunetrevocation = library('gnunetrevocation',
8 libgnunetrevocation_src,
9 dependencies: [libgnunetutil_dep, libgnunetidentity_dep],
10 include_directories: [incdir, configuration_inc])
11 libgnunetrevocation_dep = declare_dependency(link_with : libgnunetrevocation)
12 executable ('gnunet-service-revocation',
13 gnunetservicerevocation_src,
14 dependencies: [libgnunetrevocation_dep,
15 libgnunetutil_dep,
16 libgnunetstatistics_dep,
17 libgnunetcore_dep,
18 libgnunetsetu_dep,
19 libgnunetidentity_dep],
20 include_directories: [incdir, configuration_inc])
21else
22 foreach p : libgnunetrevocation_src + gnunetservicerevocation_src
23 gnunet_src += 'revocation/' + p
24 endforeach
25endif