diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-01-06 11:46:53 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-01-06 11:46:53 +0100 |
commit | a8c904813b78d966acb16c1b1a1fca17f05524fb (patch) | |
tree | 45f6184b183161459c6ab4a7398c79d1ce880ba7 | |
parent | 138e5e7c1dfba4717a4e6d5abb1abb0f82d6f49f (diff) | |
download | VeraCrypt-a8c904813b78d966acb16c1b1a1fca17f05524fb.tar.gz VeraCrypt-a8c904813b78d966acb16c1b1a1fca17f05524fb.zip |
Windows: Add missing file entry to Zip project after libzip update
-rw-r--r-- | src/Common/Zip.vcxproj | 1 | ||||
-rw-r--r-- | src/Common/Zip.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/Common/Zip.vcxproj b/src/Common/Zip.vcxproj index 6674ef34..a8fbf1eb 100644 --- a/src/Common/Zip.vcxproj +++ b/src/Common/Zip.vcxproj @@ -114,6 +114,7 @@ <ClCompile Include="libzip\zip_source_file_win32_utf8.c" /> <ClCompile Include="libzip\zip_source_free.c" /> <ClCompile Include="libzip\zip_source_function.c" /> + <ClCompile Include="libzip\zip_source_get_dostime.c" /> <ClCompile Include="libzip\zip_source_get_file_attributes.c" /> <ClCompile Include="libzip\zip_source_is_deleted.c" /> <ClCompile Include="libzip\zip_source_layered.c" /> diff --git a/src/Common/Zip.vcxproj.filters b/src/Common/Zip.vcxproj.filters index 92bcf493..eb88a358 100644 --- a/src/Common/Zip.vcxproj.filters +++ b/src/Common/Zip.vcxproj.filters @@ -399,6 +399,9 @@ <ClCompile Include="libzip\zip_source_pass_to_lower_layer.c"> <Filter>zlib</Filter> </ClCompile> + <ClCompile Include="libzip\zip_source_get_dostime.c"> + <Filter>libzip</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="libzip\compat.h"> |