diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-04-16 00:32:27 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2018-04-23 16:59:28 +0200 |
commit | 2dc39a7c7e085d77a5b3505b15fd00111a6fff5e (patch) | |
tree | d49daa73ab4a8094ca689497c881ed27ea9b1242 /src/Setup/Setup.h | |
parent | 0a737c8c87fded05a74cad5232c9c973b3037d61 (diff) | |
download | VeraCrypt-2dc39a7c7e085d77a5b3505b15fd00111a6fff5e.tar.gz VeraCrypt-2dc39a7c7e085d77a5b3505b15fd00111a6fff5e.zip |
Windows: simplify installer logic by copying only binaries for the current architecture.
Diffstat (limited to 'src/Setup/Setup.h')
-rw-r--r-- | src/Setup/Setup.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/Setup/Setup.h b/src/Setup/Setup.h index b29ad14a..12b4159f 100644 --- a/src/Setup/Setup.h +++ b/src/Setup/Setup.h @@ -27,14 +27,7 @@ static wchar_t *szFiles[]= L"AVeraCrypt.exe", L"AVeraCryptExpander.exe", L"AVeraCrypt Format.exe", - L"AVeraCrypt-x86.exe", - L"AVeraCryptExpander-x86.exe", - L"AVeraCrypt Format-x86.exe", - L"AVeraCrypt-x64.exe", - L"AVeraCryptExpander-x64.exe", - L"AVeraCrypt Format-x64.exe", L"Averacrypt.sys", - L"Averacrypt-x64.sys", L"Dveracrypt.sys", L"AVeraCrypt Setup.exe", L"XLanguages.zip", @@ -59,6 +52,18 @@ static wchar_t *szCompressedFiles[]= L"docs.zip" }; +// Specifies what legacy files to remove during install +static wchar_t *szLegacyFiles[]= +{ + L"VeraCrypt-x86.exe", + L"VeraCryptExpander-x86.exe", + L"VeraCrypt Format-x86.exe", + L"VeraCrypt-x64.exe", + L"VeraCryptExpander-x64.exe", + L"VeraCrypt Format-x64.exe", + L"veracrypt-x64.sys", +}; + #define FILENAME_64BIT_DRIVER L"veracrypt-x64.sys" #define NBR_COMPRESSED_FILES (sizeof(szCompressedFiles) / sizeof(szCompressedFiles[0])) |