mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:39:06 +08:00
19b171468d
* [ffmpeg] add usage * [ffmpeg] increase version * add version files * add version files * Trigger Build * add version files * Trigger Build * Trigger Build * Bump port-version. * Trigger Build * add version files * Trigger Build Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
7 lines
283 B
Plaintext
7 lines
283 B
Plaintext
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})
|