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

doc/examples: add -O2 in CFLAGS.

parent 072c2c08
Branches
Tags
No related merge requests found
......@@ -6,8 +6,9 @@ FFMPEG_LIBS= libavdevice \
libswscale \
libavutil \
CFLAGS+=-Wall $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDLIBS+=$(shell pkg-config --libs $(FFMPEG_LIBS))
CFLAGS += -Wall -O2
CFLAGS += $(shell pkg-config --cflags $(FFMPEG_LIBS))
LDLIBS += $(shell pkg-config --libs $(FFMPEG_LIBS))
EXAMPLES= decoding_encoding \
filtering_video \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment