mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
92bce589d8
- Add apt-get install lines for Ubuntu 18.04 - add gstreamer-webrtc-1.0 and gstreamer-sdp-1.0 to CFLAGS - make the CLAGS match LIBS in Makefile dependencies
6 lines
391 B
Makefile
6 lines
391 B
Makefile
CC := gcc
|
|
LIBS := $(shell pkg-config --libs --cflags glib-2.0 gstreamer-1.0 gstreamer-sdp-1.0 gstreamer-webrtc-1.0 json-glib-1.0 libsoup-2.4)
|
|
CFLAGS := -O0 -ggdb -Wall -fno-omit-frame-pointer \
|
|
$(shell pkg-config --cflags glib-2.0 gstreamer-1.0 gstreamer-sdp-1.0 gstreamer-webrtc-1.0 json-glib-1.0 libsoup-2.4)
|
|
webrtc-sendrecv: webrtc-sendrecv.c
|
|
"$(CC)" $(CFLAGS) $^ $(LIBS) -o $@
|