aboutsummaryrefslogtreecommitdiff
path: root/ports/ffmpeg/usage
diff options
context:
space:
mode:
Diffstat (limited to 'ports/ffmpeg/usage')
-rw-r--r--ports/ffmpeg/usage6
1 files changed, 6 insertions, 0 deletions
diff --git a/ports/ffmpeg/usage b/ports/ffmpeg/usage
new file mode 100644
index 000000000..6ef6c3bd0
--- /dev/null
+++ b/ports/ffmpeg/usage
@@ -0,0 +1,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})