# #FFmpeg # #A complete, cross-platform solution to record, convert and stream audio and video # #See https://www.ffmpeg.org/ # ExternalProject_Add ( ffmpeg PREFIX ${CMAKE_INSTALL_PREFIX} BUILD_IN_SOURCE 1 #When running configure, the current directory must be the source directory URL https://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2 URL_MD5 5576e8a22f80b6a336db39808f427cfb CONFIGURE_COMMAND ${BASH_CMD} ./configure --prefix= BUILD_COMMAND ${BASH_CMD} make INSTALL_COMMAND ${BASH_CMD} make install DEPENDS autotools )