mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
77d09884c6
Original commit message from CVS: * configure.ac: * ext/mpeg2enc/Makefile.am: * ext/soundtouch/Makefile.am: * gst/modplug/Makefile.am: Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them when building C++ code.
21 lines
567 B
Makefile
21 lines
567 B
Makefile
plugin_LTLIBRARIES = libgstmpeg2enc.la
|
|
|
|
libgstmpeg2enc_la_SOURCES = \
|
|
gstmpeg2enc.cc \
|
|
gstmpeg2encoptions.cc \
|
|
gstmpeg2encoder.cc \
|
|
gstmpeg2encstreamwriter.cc \
|
|
gstmpeg2encpicturereader.cc
|
|
|
|
libgstmpeg2enc_la_CXXFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MPEG2ENC_CFLAGS)
|
|
libgstmpeg2enc_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) $(MPEG2ENC_LIBS)
|
|
libgstmpeg2enc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstmpeg2enc.hh \
|
|
gstmpeg2encoder.hh \
|
|
gstmpeg2encoptions.hh \
|
|
gstmpeg2encstreamwriter.hh \
|
|
gstmpeg2encpicturereader.hh
|