mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
cc04850bd8
Use foo_LDADD instead of foo_LDFLAGS to specify the libraries to link to. This should make sure arguments are passed to the linker in the right order, and makes LDFLAGS usable again. Based on patch by Brian Cameron <brian.cameron@oracle.com> Fixes #615697.
8 lines
181 B
Makefile
8 lines
181 B
Makefile
if HAVE_GTK
|
|
noinst_PROGRAMS = demo
|
|
endif
|
|
|
|
demo_SOURCES = demo.c
|
|
demo_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
demo_LDADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
|
|
|