File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # x265.pc will not be installed if their cmake cannot detect the latest tag
2- # SVT-AV1 cannot determine version if the git history is not available
3- foreach (repo "x265_git" "SVT-AV1" )
4- execute_process (
5- COMMAND git -C "${CMAKE_CURRENT_SOURCE_DIR } /third-party/FFmpeg/${repo} " fetch --tags --depth=1
6- COMMAND_ERROR_IS_FATAL ANY
7- )
8- endforeach ()
9-
101# the destination directory needs to be same level down as the original source directory
112file (COPY ${CMAKE_CURRENT_SOURCE_DIR } /third-party/FFmpeg DESTINATION ${CMAKE_CURRENT_BINARY_DIR }
123 PATTERN "Vulkan-Loader/tests" EXCLUDE ) # vulkan loader test files contain emojis in file names which can fail
Original file line number Diff line number Diff line change 1+ # SVT-AV1 cannot determine version if the git history is not available
2+ execute_process (
3+ COMMAND git -C "${CMAKE_CURRENT_SOURCE_DIR } /third-party/FFmpeg/SVT-AV1" fetch --tags --depth=1
4+ COMMAND_ERROR_IS_FATAL ANY
5+ )
6+
17set (SVT_AV1_GENERATED_SRC_PATH ${CMAKE_CURRENT_BINARY_DIR } /FFmpeg/SVT-AV1)
28
39if (BUILD_FFMPEG_ALL_PATCHES OR BUILD_FFMPEG_SVT_AV1_PATCHES)
Original file line number Diff line number Diff line change 1+ # x265.pc will not be installed if their cmake cannot detect the latest tag
2+ execute_process (
3+ COMMAND git -C "${CMAKE_CURRENT_SOURCE_DIR } /third-party/FFmpeg/x265_git" fetch --tags --depth=1
4+ COMMAND_ERROR_IS_FATAL ANY
5+ )
6+
17set (X265_GENERATED_SRC_PATH ${CMAKE_CURRENT_BINARY_DIR } /FFmpeg/x265_git)
28
39file (GLOB X265_GIT_FILES ${CMAKE_CURRENT_SOURCE_DIR } /patches/FFmpeg/x265_git/*.patch )
You can’t perform that action at this time.
0 commit comments