mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
a193e8fb4e
Fixes #38764, update `7zip` to 24.06. No feature needs to be tested, the usage test passed on `x64-windows`(header files found): ``` 7zip provides CMake targets: # this is heuristically generated, and may not be correct find_package(7zip CONFIG REQUIRED) target_link_libraries(main PRIVATE 7zip::7zip) ```
10 lines
615 B
CMake
10 lines
615 B
CMake
set(program_name 7z)
|
|
if(CMAKE_HOST_WIN32)
|
|
set(tool_subdirectory "24.06")
|
|
set(paths_to_search "${DOWNLOADS}/tools/7zip_msi-${tool_subdirectory}-windows/Files/7-Zip") # vcpkg fetch 7zip_msi path
|
|
list(APPEND paths_to_search "${DOWNLOADS}/tools/7z/${tool_subdirectory}/Files/7-Zip")
|
|
set(download_urls "https://github.com/ip7z/7zip/releases/download/24.06/7z2406.msi" "https://7-zip.org/a/7z2406.msi")
|
|
set(download_filename "7z2406.msi")
|
|
set(download_sha512 44cac24b4fb9972680e99adfe7cc99baff972007a5803b01e0c96388412456c333ce6f38990673e9338f4af35c0630db6d1cf116eda9895cb2b8d60ed287787f)
|
|
endif()
|