1plugin_LTLIBRARIES = libgstopenni2.la
2
3# sources used to compile this plug-in
4libgstopenni2_la_SOURCES = gstopenni2.cpp \
5                          gstopenni2src.cpp
6
7libgstopenni2_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CXXFLAGS) $(OPENNI2_CFLAGS)
8
9# flags used to compile this facedetect
10# add other _CFLAGS and _LIBS as needed
11#
12libgstopenni2_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
13                       $(GST_CFLAGS) $(OPENNI2_CFLAGS)
14
15libgstopenni2_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(OPENNI2_LIBS) \
16                       $(GSTPB_BASE_LIBS) -lgstvideo-$(GST_API_VERSION)
17
18libgstopenni2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
19
20# headers we need but don't want installed
21noinst_HEADERS = gstopenni2src.h
22