early-access version 2853
This commit is contained in:
11
externals/vcpkg/scripts/cmake/vcpkg_extract_source_archive_ex.cmake
vendored
Executable file
11
externals/vcpkg/scripts/cmake/vcpkg_extract_source_archive_ex.cmake
vendored
Executable file
@@ -0,0 +1,11 @@
|
||||
function(vcpkg_extract_source_archive_ex)
|
||||
# OUT_SOURCE_PATH is an out-parameter so we need to parse it
|
||||
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "OUT_SOURCE_PATH" "")
|
||||
if(NOT DEFINED arg_OUT_SOURCE_PATH)
|
||||
message(FATAL_ERROR "OUT_SOURCE_PATH must be specified")
|
||||
endif()
|
||||
|
||||
vcpkg_extract_source_archive(source_path ${arg_UNPARSED_ARGUMENTS} Z_ALLOW_OLD_PARAMETER_NAMES)
|
||||
|
||||
set("${arg_OUT_SOURCE_PATH}" "${source_path}" PARENT_SCOPE)
|
||||
endfunction()
|
Reference in New Issue
Block a user