mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
25 lines
453 B
Makefile
25 lines
453 B
Makefile
plugin_LTLIBRARIES = libgstnvdec.la
|
|
|
|
libgstnvdec_la_SOURCES = \
|
|
gstnvdec.c \
|
|
plugin.c
|
|
|
|
noinst_HEADERS = \
|
|
gstnvdec.h
|
|
|
|
libgstnvdec_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_GL_CFLAGS) \
|
|
$(GST_PBUTILS_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(CUDA_CFLAGS)
|
|
|
|
libgstnvdec_la_LIBADD = \
|
|
$(GST_GL_LIBS) \
|
|
$(GST_PBUTILS_LIBS) \
|
|
$(GST_VIDEO_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(CUDA_LIBS) -lnvcuvid
|
|
|
|
libgstnvdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|