summaryrefslogtreecommitdiff
path: root/ffmpeg-player/CMakeLists.txt
diff options
context:
space:
mode:
authorHunter Kvalevog <hunter@kvog.sh>2025-09-18 19:54:15 -0500
committerHunter Kvalevog <hunter@kvog.sh>2025-09-18 19:56:57 -0500
commit172718cc6e0dcae569a94769b5444bca55e4d20c (patch)
tree466e6ad7a07a8bd7a41e7ce6a6478382e2a09900 /ffmpeg-player/CMakeLists.txt
Initial commit
Diffstat (limited to 'ffmpeg-player/CMakeLists.txt')
-rw-r--r--ffmpeg-player/CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/ffmpeg-player/CMakeLists.txt b/ffmpeg-player/CMakeLists.txt
new file mode 100644
index 0000000..96daeb4
--- /dev/null
+++ b/ffmpeg-player/CMakeLists.txt
@@ -0,0 +1,9 @@
+cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
+project(ffmpeg-player C)
+
+set(DEMO_NEEDS_FFMPEG TRUE)
+set(DEMO_NEEDS_SDL3 TRUE)
+include("${CMAKE_CURRENT_LIST_DIR}/../common/c_cpp/CMakeLists.txt")
+
+add_executable(ffmpeg-player main.c)
+target_link_libraries(ffmpeg-player PRIVATE common) \ No newline at end of file