pineapple/externals/vcpkg/ports/ffmpeg/usage
2022-07-23 03:01:36 +02:00

6 lines
283 B
Text
Executable file

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})