mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 08:39:06 +08:00
e04ecb3dd8
This enables multiple archives to be correctly expanded into the same build tree. Previously, the second archive will detect as being already extracted since 'src' exists.
17 lines
683 B
CMake
17 lines
683 B
CMake
include(vcpkg_execute_required_process)
|
|
|
|
function(vcpkg_extract_source_archive ARCHIVE)
|
|
get_filename_component(ARCHIVE_FILENAME ${ARCHIVE} NAME)
|
|
if(NOT EXISTS ${CURRENT_BUILDTREES_DIR}/src/${ARCHIVE_FILENAME}.extracted)
|
|
message(STATUS "Extracting source ${ARCHIVE}")
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/src)
|
|
vcpkg_execute_required_process(
|
|
COMMAND ${CMAKE_COMMAND} -E tar xjf ${ARCHIVE}
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/src
|
|
LOGNAME extract
|
|
)
|
|
file(WRITE ${CURRENT_BUILDTREES_DIR}/src/${ARCHIVE_FILENAME}.extracted)
|
|
endif()
|
|
message(STATUS "Extracting done")
|
|
endfunction()
|