Update CMakeLists.txt

This commit is contained in:
tooomm 2025-05-29 22:36:26 +02:00 committed by GitHub
parent 81a53401e1
commit 219778c5a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -319,7 +319,15 @@ elseif(WIN32)
# Include liblzma.dll into the package
# install(FILES "${CMAKE_SOURCE_DIR}/vcpkg_installed/x64-windows/bin/liblzma.dll" DESTINATION ./)
install(FILES "${CMAKE_SOURCE_DIR}/vcpkg_installed/x64-windows/bin/liblzma.dll" DESTINATION "bin")
# install(FILES "${CMAKE_SOURCE_DIR}/vcpkg_installed/x64-windows/bin/liblzma.dll" DESTINATION "bin")
set(LIBLZMA_DLL "${CMAKE_SOURCE_DIR}/vcpkg_installed/x64-windows/bin/liblzma.dll")
if(EXISTS "${LIBLZMA_DLL}")
install(FILES "${LIBLZMA_DLL}" DESTINATION ./)
else()
message(WARNING "liblzma.dll not found at ${LIBLZMA_DLL}, skipping DLL install.")
endif()
# Make sure vcpkg's toolchain is in use and lzma is available as a target
# find_package(lzma CONFIG REQUIRED)