mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 08:29:01 +08:00
20 lines
782 B
CMake
20 lines
782 B
CMake
function(vcpkg_apply_patches)
|
|
cmake_parse_arguments(_ap "" "SOURCE_PATH" "PATCHES" ${ARGN})
|
|
|
|
find_program(GIT git)
|
|
set(PATCHNUM 0)
|
|
foreach(PATCH ${_ap_PATCHES})
|
|
message(STATUS "Applying patch ${PATCH}")
|
|
set(LOGNAME patch-${TARGET_TRIPLET}-${PATCHNUM})
|
|
execute_process(
|
|
COMMAND ${GIT} --work-tree=. apply "${PATCH}" --ignore-whitespace --whitespace=nowarn --verbose
|
|
OUTPUT_FILE ${CURRENT_BUILDTREES_DIR}/${LOGNAME}-out.log
|
|
ERROR_FILE ${CURRENT_BUILDTREES_DIR}/${LOGNAME}-err.log
|
|
WORKING_DIRECTORY ${_ap_SOURCE_PATH}
|
|
RESULT_VARIABLE error_code
|
|
)
|
|
message(STATUS "Applying patch ${PATCH} done")
|
|
math(EXPR PATCHNUM "${PATCHNUM}+1")
|
|
endforeach()
|
|
endfunction()
|