mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
10 lines
334 B
Makefile
10 lines
334 B
Makefile
plugin_LTLIBRARIES = libgstpython.la
|
|
|
|
INCLUDES = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS)\
|
|
-DPYTHON_VERSION=\"$(PYTHON_VERSION)\" \
|
|
-DPY_LIB_LOC="\"$(PYTHON_LIB_LOC)\"" \
|
|
$(PYTHON_INCLUDES)
|
|
|
|
libgstpython_la_SOURCES = gstpythonplugin.c
|
|
libgstpython_la_LDFLAGS = -module -avoid-version
|
|
libgstpython_la_LIBADD = $(GST_LIBS) $(PYTHON_LIBS)
|