summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 654a6bf..9f23dfc 100644
--- a/meson.build
+++ b/meson.build
@@ -69,6 +69,8 @@ common_lib = static_library(
'src/buffer.hh',
'src/common.hh',
'src/config.hh',
+ 'src/daemon.cc',
+ 'src/daemon.hh',
'src/date.cc',
'src/date.hh',
'src/hash_method.cc',
@@ -334,6 +336,13 @@ test('config',
cpp_args: test_cpp_flags,
dependencies: [common_dep, config_dep, test_utils_dep]))
+test('daemon',
+ executable(
+ 'test_daemon',
+ sources: ['test/test_daemon.cc'],
+ cpp_args: test_cpp_flags,
+ dependencies: [common_dep, gmock_dep, gtest_dep]))
+
test('date',
executable(
'test_date',