~mterry/libdbusmenu/unref-gtkmenuitems

« back to all changes in this revision

Viewing changes to tests/Makefile.am

Merging in the properties branch to provide some basis to work with.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
DBUS_RUNNER=dbus-test-runner --dbus-config /usr/share/dbus-test-runner/session.conf
4
4
 
5
 
tests: test-glib-layout
 
5
tests: test-glib-layout test-glib-properties
6
6
 
7
7
libexec_PROGRAMS = \
8
8
        glib-server-nomenu \
9
9
        test-glib-layout-client \
10
 
        test-glib-layout-server
 
10
        test-glib-layout-server \
 
11
        test-glib-properties-client \
 
12
        test-glib-properties-server
11
13
 
12
14
glib_server_nomenu_SOURCES = \
13
15
        glib-server-nomenu.c
20
22
        ../libdbusmenu-glib/libdbusmenu-glib.la \
21
23
        $(DBUSMENUGLIB_LIBS)
22
24
 
 
25
 
 
26
 
23
27
test-glib-layout: test-glib-layout-client test-glib-layout-server
24
28
        $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return
25
29
 
26
30
test_glib_layout_server_SOURCES = \
 
31
        test-glib-layout.h \
27
32
        test-glib-layout-server.c
28
33
 
29
34
test_glib_layout_server_CFLAGS = \
35
40
        $(DBUSMENUGLIB_LIBS)
36
41
 
37
42
test_glib_layout_client_SOURCES = \
 
43
        test-glib-layout.h \
38
44
        test-glib-layout-client.c
39
45
 
40
46
test_glib_layout_client_CFLAGS = \
47
53
 
48
54
 
49
55
 
 
56
test-glib-properties: test-glib-properties-client test-glib-properties-server
 
57
        $(DBUS_RUNNER) --task ./test-glib-properties-client --task-name Client --task ./test-glib-properties-server --task-name Server --ignore-return
 
58
 
 
59
test_glib_properties_server_SOURCES = \
 
60
        test-glib-properties.h \
 
61
        test-glib-properties-server.c
 
62
 
 
63
test_glib_properties_server_CFLAGS = \
 
64
        -I $(srcdir)/.. \
 
65
        $(DBUSMENUGLIB_CFLAGS) -Wall -Werror
 
66
 
 
67
test_glib_properties_server_LDADD = \
 
68
        ../libdbusmenu-glib/libdbusmenu-glib.la \
 
69
        $(DBUSMENUGLIB_LIBS)
 
70
 
 
71
test_glib_properties_client_SOURCES = \
 
72
        test-glib-properties.h \
 
73
        test-glib-properties-client.c
 
74
 
 
75
test_glib_properties_client_CFLAGS = \
 
76
        -I $(srcdir)/.. \
 
77
        $(DBUSMENUGLIB_CFLAGS) -Wall -Werror
 
78
 
 
79
test_glib_properties_client_LDADD = \
 
80
        ../libdbusmenu-glib/libdbusmenu-glib.la \
 
81
        $(DBUSMENUGLIB_LIBS)
 
82
 
 
83
 
50
84
 
51
85
examplesdir = $(docdir)/examples/
52
86