]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
meson: modules/bogus_log build
authorTomas Krizek <tomas.krizek@nic.cz>
Tue, 29 Jan 2019 14:40:50 +0000 (15:40 +0100)
committerTomas Krizek <tomas.krizek@nic.cz>
Tue, 12 Mar 2019 09:41:50 +0000 (10:41 +0100)
modules/bogus_log/meson.build [new file with mode: 0644]
modules/meson.build

diff --git a/modules/bogus_log/meson.build b/modules/bogus_log/meson.build
new file mode 100644 (file)
index 0000000..c138965
--- /dev/null
@@ -0,0 +1,17 @@
+bogus_log_src = [
+  'bogus_log.c',
+]
+
+bogus_log_mod = library(
+  'bogus_log',
+  bogus_log_src,
+  name_prefix: '',
+  dependencies: [
+    contrib_dep,
+    libkres_dep,
+    libknot,
+  ],
+  link_args: link_args_c_mods,
+  install: true,
+  install_dir: modules_dir,
+)
index e6de3235a151ee051f4607f8ed1daddce26ec476..4d6e9511fa47ed018ed1ab3659ab38ae4018ddab 100644 (file)
@@ -30,6 +30,7 @@ link_args_c_mods = [  # TODO test on mac
 ]
 
 
+subdir('bogus_log')
 subdir('daf')
 subdir('edns_keepalive')
 subdir('policy')