root/trunk/libnotify/tests/Makefile.am

Revision 2954 (checked in by chipx86, 2 years ago)

Added a test program that displays three notifications and then changes the amount of text in one of them.

Line 
1 noinst_PROGRAMS = \
2     test-replace \
3     test-replace-widget \
4     test-server-info \
5     test-default-action \
6     test-multi-actions \
7     test-image \
8     test-basic \
9     test-error \
10     test-markup \
11     test-size-changes \
12     test-urgency \
13     test-xy \
14     test-xy-actions \
15     test-xy-stress
16
17 common_ldflags = \
18     $(top_builddir)/libnotify/libnotify.la \
19     $(PACKAGE_LIBS) \
20     $(GDK_LIBS)
21
22 test_replace_SOURCES = test-replace.c
23 test_replace_LDADD  = $(common_ldflags)
24
25 test_replace_widget_SOURCES = test-replace-widget.c
26 test_replace_widget_LDADD  = $(common_ldflags)
27
28 test_server_info_SOURCES = test-server-info.c
29 test_server_info_LDADD   = $(common_ldflags)
30
31 test_size_changes_SOURCES = test-size-changes.c
32 test_size_changes_LDADD   = $(common_ldflags)
33
34 test_default_action_SOURCES = test-default-action.c
35 test_default_action_LDADD  = $(common_ldflags)
36
37 test_multi_actions_SOURCES = test-multi-actions.c
38 test_multi_actions_LDADD  = $(common_ldflags)
39
40 test_image_SOURCES = test-image.c
41 test_image_LDADD  = $(common_ldflags)
42
43 test_basic_SOURCES = test-basic.c
44 test_basic_LDADD = $(common_ldflags)
45
46 test_error_SOURCES = test-error.c
47 test_error_LDADD = $(common_ldflags)
48
49 test_markup_SOURCES = test-markup.c
50 test_markup_LDADD = $(common_ldflags)
51
52 test_urgency_SOURCES = test-urgency.c
53 test_urgency_LDADD = $(common_ldflags)
54
55 test_xy_SOURCES = test-xy.c
56 test_xy_LDADD = $(common_ldflags)
57
58 test_xy_actions_SOURCES = test-xy-actions.c
59 test_xy_actions_LDADD = $(common_ldflags)
60
61 test_xy_stress_SOURCES = test-xy-stress.c
62 test_xy_stress_LDADD = $(common_ldflags)
63
64 EXTRA_DIST = applet-critical.png
65
66 INCLUDES = $(PACKAGE_CFLAGS)    \
67     $(GDK_CFLAGS)       \
68     -I$(top_srcdir)
Note: See TracBrowser for help on using the browser.