mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
32 lines
623 B
Makefile
32 lines
623 B
Makefile
plugin_LTLIBRARIES = libgstnvenc.la
|
|
|
|
libgstnvenc_la_SOURCES = \
|
|
gstnvenc.c \
|
|
gstnvbaseenc.c \
|
|
gstnvh264enc.c
|
|
|
|
noinst_HEADERS = \
|
|
gstnvenc.h \
|
|
gstnvbaseenc.h \
|
|
gstnvh264enc.h
|
|
|
|
libgstnvenc_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
$(GST_CFLAGS) \
|
|
$(GST_PBUTILS_CFLAGS) \
|
|
$(GST_VIDEO_CFLAGS) \
|
|
$(CUDA_CFLAGS) \
|
|
$(NVENCODE_CFLAGS)
|
|
|
|
libgstnvenc_la_LIBADD = \
|
|
$(GST_LIBS) \
|
|
$(GST_PBUTILS_LIBS) \
|
|
$(GST_VIDEO_LIBS) \
|
|
$(CUDA_LIBS) \
|
|
$(NVENCODE_LIBS)
|
|
|
|
if USE_NVENC_GST_GL
|
|
libgstnvenc_la_LIBADD += \
|
|
$(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la
|
|
endif
|
|
libgstnvenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|