mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
f8f4620451
_BAD_CFLAGS should always come first, then GST_PLUGINS_BASE_CFLAGS, then GST_BASE_CFLAGS then GST_CFLAGS. Same for libs: first plugins base libs, then GST_BASE_LIB then GST_LIBS.
35 lines
724 B
Makefile
35 lines
724 B
Makefile
plugin_LTLIBRARIES = libgstdecklink.la
|
|
|
|
libgstdecklink_la_CPPFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CXXFLAGS) \
|
|
$(DECKLINK_CXXFLAGS)
|
|
libgstdecklink_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(DECKLINK_LIBS) \
|
|
$(LIBM)
|
|
libgstdecklink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdecklink_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
libgstdecklink_la_SOURCES = \
|
|
gstdecklinksrc.cpp \
|
|
gstdecklinksink.cpp \
|
|
gstdecklink.cpp \
|
|
capture.cpp \
|
|
linux/DeckLinkAPIDispatch.cpp
|
|
|
|
noinst_HEADERS = \
|
|
gstdecklink.h \
|
|
gstdecklinksrc.h \
|
|
gstdecklinksink.h \
|
|
capture.h \
|
|
linux/DeckLinkAPI.h \
|
|
linux/LinuxCOM.h
|
|
|
|
EXTRA_DIST = \
|
|
win/DeckLinkAPI.h \
|
|
win/DeckLinkAPIDispatch.cpp \
|
|
win/DeckLinkAPI_i.c
|
|
|