gstreamer/ext/wpe/Makefile.am

30 lines
640 B
Makefile
Raw Normal View History

2019-01-21 10:57:57 +00:00
plugin_LTLIBRARIES = libgstwpe.la
# sources used to compile this plug-in
libgstwpe_la_SOURCES = \
gstwpesrc.cpp \
WPEThreadedView.cpp
# compiler and linker flags used to compile this plugin, set in configure.ac
libgstwpe_la_CXXFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_GL_CFLAGS) \
$(GST_CFLAGS) \
$(WPE_CFLAGS)
libgstwpe_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) \
-lgstvideo-$(GST_API_VERSION) \
$(GST_BASE_LIBS) \
$(GST_GL_LIBS) \
$(GST_LIBS) \
$(WPE_LIBS)
libgstwpe_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
# headers we need but don't want installed
noinst_HEADERS = \
gstwpesrc.h \
WPEThreadedView.h