aboutsummaryrefslogtreecommitdiff
path: root/ports/ffmpeg/usage
blob: 6ef6c3bd07a31975ffc9c24d3aecba0aaa82ac9f (plain)
1
2
3
4
5
6
To use ffmpeg add the following to your CMake project:

    find_package(FFMPEG REQUIRED)
    target_include_directories(main PRIVATE ${FFMPEG_INCLUDE_DIRS})
    target_link_directories(main PRIVATE ${FFMPEG_LIBRARY_DIRS})
    target_link_libraries(main PRIVATE ${FFMPEG_LIBRARIES})