summaryrefslogtreecommitdiff
path: root/test/functional/Test1/Makefile.am
blob: f2bb38f67826ef7ecaf2d10b2463db5aa9d1fb8d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
BUILT_SOURCES = TestAppIntroProviderPrivate.h TestAppIntroPrivate.h

# We don't want to install this header
noinst_HEADERS = $(BUILT_SOURCES)

# Correctly clean the generated headers, but keep the xml description
CLEANFILES = $(BUILT_SOURCES)

EXTRA_DIST = TestAppIntro.xml

noinst_PROGRAMS = \
	TestApp

## Rule to generate the binding headers

TestAppIntroProviderPrivate.h:  TestAppIntro.xml
	$(top_builddir)/tools/dbusxx-xml2cpp $< --adaptor=$@

TestAppIntroPrivate.h:  TestAppIntro.xml
	$(top_builddir)/tools/dbusxx-xml2cpp $< --proxy=$@

TestApp_SOURCES = \
	TestAppMain.cpp \
	TestApp.cpp  \
	TestApp.h  \
	TestAppIntroProviderPrivate.h \
	TestAppIntroPrivate.h \
	TestAppIntro.h \
	TestAppIntroProvider.h

TestApp_LDFLAGS = \
	../../../src/libdbus-c++-1.la

TestApp_CXXFLAGS = \
	-I../../../include

AM_CPPFLAGS = 

## File created by the gnome-build tools