Skip to content
Snippets Groups Projects
Commit 624c413d authored by Clément Bœsch's avatar Clément Bœsch
Browse files

examples: add -Wall to CFLAGS.

parent 2b97be5d
No related branches found
No related tags found
No related merge requests found
# use pkg-config for getting CFLAGS abd LDFLAGS # use pkg-config for getting CFLAGS abd LDFLAGS
FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil FFMPEG_LIBS=libavdevice libavformat libavfilter libavcodec libswscale libavutil
CFLAGS+=$(shell pkg-config --cflags $(FFMPEG_LIBS)) CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS)) LDFLAGS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
EXAMPLES=decoding_encoding filtering metadata muxing EXAMPLES=decoding_encoding filtering metadata muxing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment