diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-27 15:52:23 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-29 00:43:14 +0200 |
commit | 0b1b8b479f7c37812c9189cf9c843b58ad3304a3 (patch) | |
tree | c45f4d37870c49d3e3e4bca024f6b7fe00237265 /src/Format/Format.vcxproj | |
parent | e8105c89d8e010a3435f90d3dd1469943122e6b7 (diff) | |
download | VeraCrypt-0b1b8b479f7c37812c9189cf9c843b58ad3304a3.tar.gz VeraCrypt-0b1b8b479f7c37812c9189cf9c843b58ad3304a3.zip |
Windows: reduce size of 64-bit binaries by not embedding 32-bit EFI bootloader files in their resources.
Diffstat (limited to 'src/Format/Format.vcxproj')
-rw-r--r-- | src/Format/Format.vcxproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Format/Format.vcxproj b/src/Format/Format.vcxproj index 7d206bf2..c5d73070 100644 --- a/src/Format/Format.vcxproj +++ b/src/Format/Format.vcxproj @@ -165,6 +165,9 @@ copy Debug\VeraCryptFormat.exe "..\Debug\Setup Files\VeraCrypt Format.exe" >N copy $(TargetPath) "..\Debug\Setup Files\VeraCrypt Format-x64.exe" >NUL: </Command> </PostBuildEvent> + <ResourceCompile> + <PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ResourceCompile> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <Midl> @@ -247,6 +250,9 @@ copy $(TargetPath) "..\Debug\Setup Files\VeraCrypt Format-x64.exe" >NUL: <PostBuildEvent> <Command>copy $(TargetPath) "..\Release\Setup Files\VeraCrypt Format-x64.exe"</Command> </PostBuildEvent> + <ResourceCompile> + <PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ResourceCompile> </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="FormatCom.cpp" /> |