Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ADApp/commonDriverMakefile
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,11 @@ endif
ifdef FFMPEGSERVER
$(DBD_NAME)_DBD += ffmpegServer.dbd
PROD_LIBS += ffmpegServer
PROD_LIBS += avdevice avformat avcodec swresample swscale avutil
ifeq ($(FFMPEG_EXTERNAL), NO)
PROD_LIBS += avdevice avformat avcodec swresample swscale avutil
else
PROD_SYS_LIBS += avdevice avformat avcodec swresample swscale avutil
endif
PROD_SYS_LIBS += lzma
endif

Expand Down
Loading