1plugin_LTLIBRARIES = libgstwpe.la
2
3# sources used to compile this plug-in
4libgstwpe_la_SOURCES = \
5	gstwpesrc.cpp \
6	WPEThreadedView.cpp
7
8# compiler and linker flags used to compile this plugin, set in configure.ac
9libgstwpe_la_CXXFLAGS = \
10	$(GST_PLUGINS_BASE_CFLAGS) \
11	$(GST_BASE_CFLAGS) \
12	$(GST_GL_CFLAGS) \
13	$(GST_CFLAGS) \
14	$(WPE_CFLAGS)
15
16libgstwpe_la_LIBADD = \
17	$(GST_PLUGINS_BASE_LIBS) \
18	-lgstvideo-$(GST_API_VERSION) \
19	$(GST_BASE_LIBS) \
20	$(GST_GL_LIBS) \
21	$(GST_LIBS) \
22	$(WPE_LIBS)
23
24libgstwpe_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
25
26# headers we need but don't want installed
27noinst_HEADERS = \
28	gstwpesrc.h \
29	WPEThreadedView.h
30