mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 01:39:00 +08:00
1.1 KiB
1.1 KiB
vcpkg_apply_patches
Apply a set of patches to a source tree.
Usage
vcpkg_apply_patches(
SOURCE_PATH <${SOURCE_PATH}>
[QUIET]
PATCHES <patch1.patch>...
)
Parameters
SOURCE_PATH
The source path in which apply the patches. By convention, this is usually set in the portfile as the variable SOURCE_PATH
.
PATCHES
A list of patches that are applied to the source tree.
Generally, these take the form of ${CMAKE_CURRENT_LIST_DIR}/some.patch
to select patches in the port\<port>\
directory.
QUIET
Disables the warning message upon failure.
This should only be used for edge cases, such as patches that are known to fail even on a clean source tree.