diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-02-22 20:04:21 -0600 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-02-22 20:04:21 -0600 |
| commit | def6b62eecb427601f78cc7fe8088a8ef59f32fa (patch) | |
| tree | fbe2fe81cdeac6da2b3f4a0cd68c9bdc0b9bc741 /h264/CMakeLists.txt | |
| parent | 11379c6617602dbb8220fa83fcd544aaf94ab57d (diff) | |
h264: Print NAL units, parse SPS,PPS
Diffstat (limited to 'h264/CMakeLists.txt')
| -rw-r--r-- | h264/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/h264/CMakeLists.txt b/h264/CMakeLists.txt new file mode 100644 index 0000000..9ba7a72 --- /dev/null +++ b/h264/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) +project(h264 C) + +include("${CMAKE_CURRENT_LIST_DIR}/../common/c_cpp/CMakeLists.txt") + +add_executable(h264 h264.c) +target_link_libraries(h264 PRIVATE common) |