diff options
Diffstat (limited to 'rotord/Makefile')
| -rw-r--r-- | rotord/Makefile | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/rotord/Makefile b/rotord/Makefile index 2edfbca..34de47a 100644 --- a/rotord/Makefile +++ b/rotord/Makefile @@ -2,7 +2,22 @@ MY_CFLAGS = -I ../ffmpeg -fpermissive -std=c++11 # The linker options. -MY_LIBS = -lPocoNet -lPocoXML -lPocoUtil -lPocoFoundation -lvamp-hostsdk -lsndfile -lavcodec +MY_LIBS = -lPocoNet -lPocoXML -lPocoUtil -lPocoFoundation -lvamp-hostsdk -lsndfile -L libs -lavcodec -lavutil -lavformat -lavfilter -lavdevice + +FFMPEG_LIBS= libavdevice \ + libavformat \ + libavfilter \ + libavcodec \ + libswresample \ + libswscale \ + libavutil \ + +#MY_CFLAGS += $(shell pkg-config --cflags $(FFMPEG_LIBS)) +#MY_LIBS += -L libs $(shell pkg-config --libs $(FFMPEG_LIBS)) + +#-lavcodec -lavutil -lavformat -lavfilter -lavdevice +#ffmpeg version hell! + # The pre-processor options used by the cpp (man cpp for more). CPPFLAGS = -Wall |
