Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions ffmpegServerApp/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ endif

# Include the ffmpeg header files
USR_INCLUDES += -I$(TOP)/vendor/ffmpeg-$(VENDORARCH)/include


+ffmpegServer_SYS_LIBS += microhttpd
# build the ffmpeg libs (or stubs on windows) into the binaries
LIB_LIBS += avdevice avformat avcodec swresample swscale avutil
LIB_LIBS += NDPlugin
LIB_SYS_LIBS_WIN32 += user32

# The following are compiled and added to the support library
ffmpegServer_SRCS += ffmpegCommon.cpp
ffmpegServer_SRCS += ffmpegServer.cpp nullhttpd_server.c nullhttpd_http.c nullhttpd_format.c nullhttpd_win32.c
ffmpegServer_SRCS += ffmpegServer.cpp
ffmpegServer_SRCS += ffmpegFile.cpp

include $(ADCORE)/ADApp/commonLibraryMakefile
Expand Down
Loading