marcogulino / AndroidUsbCamera

Android USB Camera Driver/Bridge for GNU/Linux
178 stars 104 forks source link

Cannot make #6

Open TheLinx opened 14 years ago

TheLinx commented 14 years ago

/home/thelinx/Projects/AndroidUsbCamera/src/framesconverter.cpp:28:32: error: libavcodec/avcodec.h: No such file or directory /home/thelinx/Projects/AndroidUsbCamera/src/framesconverter.cpp:29:34: error: libavformat/avformat.h: No such file or directory /home/thelinx/Projects/AndroidUsbCamera/src/framesconverter.cpp:30:32: error: libswscale/swscale.h: No such file or directory

After installing libavcodec-dev, libavformat-dev and libswscale-dev this issue was fixed.

However, I think you should make the CMakeLists.txt check for these files before giving the A-OK.

comtom commented 14 years ago

You have some missing dependencies.

you must install libavutil-dev, libavcodec-dev, libavcodec-dev, libavformat-dev and libswscale-dev In order to compile the code (these are header packages)

good luck

TheLinx commented 12 years ago

Like I said, you should make the CMakeLists.txt check for these files before giving the A-OK to build.