# # Set up FFmpeg specific configurations for the sample app. # # To build with FFMpeg, run the following command, # cmake # -DFFMPEG_LIB_PATH= # -DFFMPEG_INCLUDE_DIR= # option(FFMPEG_LIB_PATH, "Path to FFmpeg shared libraries") option(FFMPEG_INCLUDE_DIR, "Path to FFmpeg include directory") if (FFMPEG_LIB_PATH AND FFMPEG_INCLUDE_DIR) message("Including FFmpeg libraries") link_directories(${FFMPEG_LIB_PATH}) endif()