diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-07-17 14:26:53 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-07-17 14:26:53 +0200 |
commit | 9607b9708cb0fc79a664050802aebf7dcae36e59 (patch) | |
tree | 8b0e3863fc6a6195d73e1e00d6c3a17ae84f1bb4 | |
parent | 65765798d85258c0358b28b90aac68ed1851f49b (diff) | |
download | VeraCrypt-9607b9708cb0fc79a664050802aebf7dcae36e59.tar.gz VeraCrypt-9607b9708cb0fc79a664050802aebf7dcae36e59.zip |
Windows: Fix link error with latest libzip by adding new file zip_source_pass_to_lower_layer.c tp VS projects
-rw-r--r-- | src/Common/Zip.vcxproj | 1 | ||||
-rw-r--r-- | src/Common/Zip.vcxproj.filters | 3 | ||||
-rw-r--r-- | src/Common/Zip_vs2019.vcxproj | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/src/Common/Zip.vcxproj b/src/Common/Zip.vcxproj index a9d567a7..11a971b2 100644 --- a/src/Common/Zip.vcxproj +++ b/src/Common/Zip.vcxproj @@ -110,6 +110,7 @@ <ClCompile Include="libzip\zip_source_is_deleted.c" /> <ClCompile Include="libzip\zip_source_layered.c" /> <ClCompile Include="libzip\zip_source_open.c" /> + <ClCompile Include="libzip\zip_source_pass_to_lower_layer.c" /> <ClCompile Include="libzip\zip_source_pkware_decode.c" /> <ClCompile Include="libzip\zip_source_pkware_encode.c" /> <ClCompile Include="libzip\zip_source_read.c" /> diff --git a/src/Common/Zip.vcxproj.filters b/src/Common/Zip.vcxproj.filters index 209a93d6..92bcf493 100644 --- a/src/Common/Zip.vcxproj.filters +++ b/src/Common/Zip.vcxproj.filters @@ -396,6 +396,9 @@ <ClCompile Include="libzip\zip_winzip_aes.c"> <Filter>libzip</Filter> </ClCompile> + <ClCompile Include="libzip\zip_source_pass_to_lower_layer.c"> + <Filter>zlib</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="libzip\compat.h"> diff --git a/src/Common/Zip_vs2019.vcxproj b/src/Common/Zip_vs2019.vcxproj index d60b4981..26ab3310 100644 --- a/src/Common/Zip_vs2019.vcxproj +++ b/src/Common/Zip_vs2019.vcxproj @@ -118,6 +118,7 @@ <ClCompile Include="libzip\zip_source_is_deleted.c" /> <ClCompile Include="libzip\zip_source_layered.c" /> <ClCompile Include="libzip\zip_source_open.c" /> + <ClCompile Include="libzip\zip_source_pass_to_lower_layer.c" /> <ClCompile Include="libzip\zip_source_pkware_decode.c" /> <ClCompile Include="libzip\zip_source_pkware_encode.c" /> <ClCompile Include="libzip\zip_source_read.c" /> |