summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-12-05 02:46:54 +0100
committerLennart Poettering <lennart@poettering.net>2013-12-05 02:47:36 +0100
commitc1b9d935725103e95901f347b8981647ce4dd546 (patch)
tree4f5474c2022f7812d7e261b29896e89de14cf490 /Makefile.am
parent65dae17a2f890b12a07dd4901b3db02b1031c463 (diff)
bus: add support for serializing to gvariant
(deserialization is still missing, hence this is not hooked up to kdbus)
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index acf511bc4f..194aaa8fbf 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1997,6 +1997,8 @@ libsystemd_bus_la_SOURCES = \
src/libsystemd-bus/bus-introspect.h \
src/libsystemd-bus/bus-objects.c \
src/libsystemd-bus/bus-objects.h \
+ src/libsystemd-bus/bus-gvariant.c \
+ src/libsystemd-bus/bus-gvariant.h \
src/libsystemd-bus/bus-convenience.c \
src/libsystemd-bus/kdbus.h \
src/libsystemd-bus/sd-memfd.c \
@@ -2065,6 +2067,7 @@ tests += \
test-bus-objects \
test-bus-error \
test-bus-creds \
+ test-bus-gvariant \
test-event
bin_PROGRAMS += \
@@ -2149,6 +2152,20 @@ test_bus_error_LDADD = \
libsystemd-daemon-internal.la \
libsystemd-shared.la
+test_bus_gvariant_SOURCES = \
+ src/libsystemd-bus/test-bus-gvariant.c
+
+test_bus_gvariant_LDADD = \
+ libsystemd-bus-internal.la \
+ libsystemd-id128-internal.la \
+ libsystemd-daemon-internal.la \
+ libsystemd-shared.la \
+ $(GLIB_LIBS)
+
+test_bus_gvariant_CFLAGS = \
+ $(AM_CFLAGS) \
+ $(GLIB_CFLAGS)
+
test_bus_creds_SOURCES = \
src/libsystemd-bus/test-bus-creds.c