mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-12 01:18:24 -05:00
7 lines
283 B
Plaintext
Executable File
7 lines
283 B
Plaintext
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})
|