aboutsummaryrefslogtreecommitdiff
path: root/tools/testapp/Makefile.am
blob: ee12ec99f91efe7ccf6359f839c2c6047f0d8c85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

if USE_GTK3
VER=3
else
VER=
endif

libexec_PROGRAMS =

if WANT_TESTS
libexec_PROGRAMS += dbusmenu-testapp
endif

dbusmenu_testapp_SOURCES = \
	main.c

dbusmenu_testapp_CFLAGS = \
	-I $(srcdir)/../.. \
	$(DBUSMENUTESTS_CFLAGS) \
	$(DBUSMENUGLIB_CFLAGS) \
	-Wall -Werror

dbusmenu_testapp_LDADD = \
	$(builddir)/../../libdbusmenu-glib/libdbusmenu-glib.la \
	$(builddir)/../../libdbusmenu-gtk/libdbusmenu-gtk$(VER).la \
	$(DBUSMENUGTK_LIBS) \
	$(DBUSMENUTESTS_LIBS)