Fix Visual Studio project file issues (#446)
- don't enable SSE2 explicitly for x64, it's always enabled and causes warnings (issue #445) - remove newlines in project files that Visual Studio doesn't like and removes on every change to project optionspull/438/merge
parent
d9de314e86
commit
3485d2180d
|
|
@ -24,17 +24,14 @@
|
||||||
<PlatformToolset>v100</PlatformToolset>
|
<PlatformToolset>v100</PlatformToolset>
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
||||||
<ImportGroup Label="ExtensionSettings" />
|
<ImportGroup Label="ExtensionSettings" />
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<!-- End of Visual Studio boilerplate -->
|
<!-- End of Visual Studio boilerplate -->
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<PropertyGroup Label="All Configurations">
|
<PropertyGroup Label="All Configurations">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
|
@ -46,7 +43,6 @@
|
||||||
<OutDir>$(Platform)\DLL_Output\$(Configuration)\</OutDir>
|
<OutDir>$(Platform)\DLL_Output\$(Configuration)\</OutDir>
|
||||||
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<ItemDefinitionGroup Label="All Configurations">
|
<ItemDefinitionGroup Label="All Configurations">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -67,7 +63,6 @@
|
||||||
<ImportLibrary>$(TargetDir)\cryptopp.lib</ImportLibrary>
|
<ImportLibrary>$(TargetDir)\cryptopp.lib</ImportLibrary>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Debug Configurations -->
|
<!-- Debug Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'" Label="Debug Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'" Label="Debug Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -83,7 +78,6 @@
|
||||||
<Culture>0x0409</Culture>
|
<Culture>0x0409</Culture>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Release Configurations -->
|
<!-- Release Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'" Label="Release Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'" Label="Release Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -105,7 +99,6 @@
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X86 Configurations -->
|
<!-- X86 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -116,17 +109,12 @@
|
||||||
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X64 Configurations -->
|
<!-- X64 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
||||||
<ClCompile>
|
|
||||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX64</TargetMachine>
|
<TargetMachine>MachineX64</TargetMachine>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Win32/Debug cryptest.exe for DLL MAC'ing -->
|
<!-- Win32/Debug cryptest.exe for DLL MAC'ing -->
|
||||||
<!-- Broken at the moment; see http://stackoverflow.com/q/39900437 -->
|
<!-- Broken at the moment; see http://stackoverflow.com/q/39900437 -->
|
||||||
<!-- and http://stackoverflow.com/q/39929817/608639 -->
|
<!-- and http://stackoverflow.com/q/39929817/608639 -->
|
||||||
|
|
@ -142,7 +130,6 @@
|
||||||
Properties="Configuration=Debug;Platform=Win32;"/>
|
Properties="Configuration=Debug;Platform=Win32;"/>
|
||||||
</Target>
|
</Target>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="!Exists('Win32\Output\Debug\cryptest.exe')" Label="MAC tool">
|
<ItemDefinitionGroup Condition="!Exists('Win32\Output\Debug\cryptest.exe')" Label="MAC tool">
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Message>Creating Win32/Debug cryptest.exe for MAC computation</Message>
|
<Message>Creating Win32/Debug cryptest.exe for MAC computation</Message>
|
||||||
|
|
@ -152,7 +139,6 @@
|
||||||
</Command>
|
</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- DLL MAC'ing performed by cryptest.exe -->
|
<!-- DLL MAC'ing performed by cryptest.exe -->
|
||||||
<ItemDefinitionGroup Label="DLL MAC">
|
<ItemDefinitionGroup Label="DLL MAC">
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
|
|
@ -165,7 +151,6 @@
|
||||||
<Outputs>$(OutDir)cryptopp.mac.done;%(Outputs)</Outputs>
|
<Outputs>$(OutDir)cryptopp.mac.done;%(Outputs)</Outputs>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Original File with special treatment -->
|
<!-- Original File with special treatment -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<CustomBuild Condition="'$(Platform)'=='x64' AND ('$(Configuration)'=='Debug' Or '$(Configuration)'=='Release')" Include="x64dll.asm">
|
<CustomBuild Condition="'$(Platform)'=='x64' AND ('$(Configuration)'=='Debug' Or '$(Configuration)'=='Release')" Include="x64dll.asm">
|
||||||
|
|
@ -174,7 +159,6 @@
|
||||||
<Outputs>$(IntDir)x64dll.obj;%(Outputs)</Outputs>
|
<Outputs>$(IntDir)x64dll.obj;%(Outputs)</Outputs>
|
||||||
</CustomBuild>
|
</CustomBuild>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Source Files -->
|
<!-- Source Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="pch.cpp">
|
<ClCompile Include="pch.cpp">
|
||||||
|
|
@ -239,7 +223,6 @@
|
||||||
<ClCompile Include="strciphr.cpp" />
|
<ClCompile Include="strciphr.cpp" />
|
||||||
<ClCompile Include="trdlocal.cpp" />
|
<ClCompile Include="trdlocal.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Header Files -->
|
<!-- Header Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="aes.h" />
|
<ClInclude Include="aes.h" />
|
||||||
|
|
@ -310,7 +293,6 @@
|
||||||
<ClInclude Include="trdlocal.h" />
|
<ClInclude Include="trdlocal.h" />
|
||||||
<ClInclude Include="words.h" />
|
<ClInclude Include="words.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Back to Visual Studio boilerplate -->
|
<!-- Back to Visual Studio boilerplate -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="cryptopp.rc" />
|
<ResourceCompile Include="cryptopp.rc" />
|
||||||
|
|
@ -319,4 +301,4 @@
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -34,7 +34,6 @@
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>{09cdac08-e6ae-48a9-8de7-0fbc779eebde}</ProjectGuid>
|
<ProjectGuid>{09cdac08-e6ae-48a9-8de7-0fbc779eebde}</ProjectGuid>
|
||||||
<RootNamespace>cryptest</RootNamespace>
|
<RootNamespace>cryptest</RootNamespace>
|
||||||
|
|
@ -43,7 +42,6 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
|
|
@ -52,7 +50,6 @@
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<!-- End of Visual Studio boilerplate -->
|
<!-- End of Visual Studio boilerplate -->
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<PropertyGroup Label="All Configurations">
|
<PropertyGroup Label="All Configurations">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
|
@ -62,7 +59,6 @@
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Intermediate and Output directories -->
|
<!-- Intermediate and Output directories -->
|
||||||
<!-- Cryptlib and Cryptest need extra care due to Non-DLL/DLL configs -->
|
<!-- Cryptlib and Cryptest need extra care due to Non-DLL/DLL configs -->
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='Release'" Label="Non-DLL Directories">
|
<PropertyGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='Release'" Label="Non-DLL Directories">
|
||||||
|
|
@ -77,7 +73,6 @@
|
||||||
<OutDir>$(Platform)\DLL_Output\Release\</OutDir>
|
<OutDir>$(Platform)\DLL_Output\Release\</OutDir>
|
||||||
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<ItemDefinitionGroup Label="All Configurations">
|
<ItemDefinitionGroup Label="All Configurations">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -97,7 +92,6 @@
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Debug Configurations -->
|
<!-- Debug Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='DLL-Import Debug'" Label="Debug Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='DLL-Import Debug'" Label="Debug Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -113,7 +107,6 @@
|
||||||
<Culture>0x0409</Culture>
|
<Culture>0x0409</Culture>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Release Configurations -->
|
<!-- Release Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='DLL-Import Release'" Label="Release Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='DLL-Import Release'" Label="Release Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -135,7 +128,6 @@
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- DLL-Import Overrides for Preprocessor and Libraries -->
|
<!-- DLL-Import Overrides for Preprocessor and Libraries -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='DLL-Import Debug'" Label="DLL Debug Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='DLL-Import Debug'" Label="DLL Debug Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -155,7 +147,6 @@
|
||||||
<AdditionalDependencies>cryptopp.lib;cryptlib.lib;Ws2_32.lib</AdditionalDependencies>
|
<AdditionalDependencies>cryptopp.lib;cryptlib.lib;Ws2_32.lib</AdditionalDependencies>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X86 Configurations -->
|
<!-- X86 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -166,17 +157,12 @@
|
||||||
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X64 Configurations -->
|
<!-- X64 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
||||||
<ClCompile>
|
|
||||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX64</TargetMachine>
|
<TargetMachine>MachineX64</TargetMachine>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- FIPS Validated Warning -->
|
<!-- FIPS Validated Warning -->
|
||||||
<ItemDefinitionGroup Label="FIPS Warning">
|
<ItemDefinitionGroup Label="FIPS Warning">
|
||||||
<PreBuildEvent Condition="'$(Configuration)'=='DLL-Import Debug' Or '$(Configuration)'=='DLL-Import Release'">
|
<PreBuildEvent Condition="'$(Configuration)'=='DLL-Import Debug' Or '$(Configuration)'=='DLL-Import Release'">
|
||||||
|
|
@ -190,14 +176,12 @@
|
||||||
</Command>
|
</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Target for Appvoyer -->
|
<!-- Target for Appvoyer -->
|
||||||
<!-- The rule copies cryptest.exe to the project -->
|
<!-- The rule copies cryptest.exe to the project -->
|
||||||
<!-- root directory so it can be executed in place -->
|
<!-- root directory so it can be executed in place -->
|
||||||
<Target Name="CopyCryptestToRoot">
|
<Target Name="CopyCryptestToRoot">
|
||||||
<Exec Command="copy $(Platform)\Output\$(Configuration)\cryptest.exe $(SolutionDir)" />
|
<Exec Command="copy $(Platform)\Output\$(Configuration)\cryptest.exe $(SolutionDir)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<!-- Source Files -->
|
<!-- Source Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="adhoc.cpp" />
|
<ClCompile Include="adhoc.cpp" />
|
||||||
|
|
@ -215,14 +199,12 @@
|
||||||
<ClCompile Include="validat2.cpp" />
|
<ClCompile Include="validat2.cpp" />
|
||||||
<ClCompile Include="validat3.cpp" />
|
<ClCompile Include="validat3.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Header Files -->
|
<!-- Header Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="bench.h" />
|
<ClInclude Include="bench.h" />
|
||||||
<ClInclude Include="factory.h" />
|
<ClInclude Include="factory.h" />
|
||||||
<ClInclude Include="validate.h" />
|
<ClInclude Include="validate.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Test Files -->
|
<!-- Test Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="TestVectors\aes.txt" />
|
<None Include="TestVectors\aes.txt" />
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,6 @@
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<!-- End of Visual Studio boilerplate -->
|
<!-- End of Visual Studio boilerplate -->
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<PropertyGroup Label="All Configurations">
|
<PropertyGroup Label="All Configurations">
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
|
|
@ -60,7 +59,6 @@
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Intermediate and Output directories -->
|
<!-- Intermediate and Output directories -->
|
||||||
<!-- Cryptlib and Cryptest need extra care due to Non-DLL/DLL configs -->
|
<!-- Cryptlib and Cryptest need extra care due to Non-DLL/DLL configs -->
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='Release'" Label="Non-DLL Directories">
|
<PropertyGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='Release'" Label="Non-DLL Directories">
|
||||||
|
|
@ -75,7 +73,6 @@
|
||||||
<OutDir>$(Platform)\DLL_Output\Release\</OutDir>
|
<OutDir>$(Platform)\DLL_Output\Release\</OutDir>
|
||||||
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<ItemDefinitionGroup Label="All Configurations">
|
<ItemDefinitionGroup Label="All Configurations">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -89,7 +86,6 @@
|
||||||
<ErrorReporting>NoErrorReport</ErrorReporting>
|
<ErrorReporting>NoErrorReport</ErrorReporting>
|
||||||
</Lib>
|
</Lib>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Debug Configurations -->
|
<!-- Debug Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='DLL-Import Debug'" Label="Debug Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' Or '$(Configuration)'=='DLL-Import Debug'" Label="Debug Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -105,7 +101,6 @@
|
||||||
<Culture>0x0409</Culture>
|
<Culture>0x0409</Culture>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Release Configurations -->
|
<!-- Release Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='DLL-Import Release'" Label="Release Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='DLL-Import Release'" Label="Release Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -123,7 +118,6 @@
|
||||||
<Culture>0x0409</Culture>
|
<Culture>0x0409</Culture>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- DLL-Import Overrides for Preprocessor -->
|
<!-- DLL-Import Overrides for Preprocessor -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='DLL-Import Debug'" Label="DLL Debug Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='DLL-Import Debug'" Label="DLL Debug Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -135,7 +129,6 @@
|
||||||
<PreprocessorDefinitions>NDEBUG;USE_PRECOMPILED_HEADERS;CRYPTOPP_IMPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;USE_PRECOMPILED_HEADERS;CRYPTOPP_IMPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X86 Configurations -->
|
<!-- X86 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -146,19 +139,13 @@
|
||||||
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
||||||
</Lib>
|
</Lib>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X64 Configurations -->
|
<!-- X64 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
||||||
<ClCompile>
|
|
||||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
|
||||||
</ClCompile>
|
|
||||||
<Lib>
|
<Lib>
|
||||||
<TargetMachine>MachineX64</TargetMachine>
|
<TargetMachine>MachineX64</TargetMachine>
|
||||||
</Lib>
|
</Lib>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Original File with special treatment -->
|
<!-- Original File with special treatment -->
|
||||||
|
|
||||||
<!-- Source Files -->
|
<!-- Source Files -->
|
||||||
<!-- The order of the first three matters -->
|
<!-- The order of the first three matters -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -24,17 +24,14 @@
|
||||||
<PlatformToolset>v100</PlatformToolset>
|
<PlatformToolset>v100</PlatformToolset>
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
|
||||||
<ImportGroup Label="ExtensionSettings" />
|
<ImportGroup Label="ExtensionSettings" />
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<!-- End of Visual Studio boilerplate -->
|
<!-- End of Visual Studio boilerplate -->
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<PropertyGroup Label="All Configurations">
|
<PropertyGroup Label="All Configurations">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
|
@ -44,7 +41,6 @@
|
||||||
<OutDir>$(Platform)\DLL_Output\$(Configuration)\</OutDir>
|
<OutDir>$(Platform)\DLL_Output\$(Configuration)\</OutDir>
|
||||||
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
<IntDir>$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- All Configurations -->
|
<!-- All Configurations -->
|
||||||
<ItemDefinitionGroup Label="All Configurations">
|
<ItemDefinitionGroup Label="All Configurations">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -61,7 +57,6 @@
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Debug Configurations -->
|
<!-- Debug Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'" Label="Debug Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'" Label="Debug Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -77,7 +72,6 @@
|
||||||
<Culture>0x0409</Culture>
|
<Culture>0x0409</Culture>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Release Configurations -->
|
<!-- Release Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'" Label="Release Configuration">
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'" Label="Release Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -99,7 +93,6 @@
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X86 Configurations -->
|
<!-- X86 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'" Label="X86 Configuration">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -110,24 +103,18 @@
|
||||||
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
<ImageHasSafeExceptionHandlers>true</ImageHasSafeExceptionHandlers>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- X64 Configurations -->
|
<!-- X64 Configurations -->
|
||||||
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'" Label="X64 Configuration">
|
||||||
<ClCompile>
|
|
||||||
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
<Link>
|
||||||
<TargetMachine>MachineX64</TargetMachine>
|
<TargetMachine>MachineX64</TargetMachine>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<!-- Source Files -->
|
<!-- Source Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="dlltest.cpp" />
|
<ClCompile Include="dlltest.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Back to Visual Studio boilerplate -->
|
<!-- Back to Visual Studio boilerplate -->
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
Loading…
Reference in New Issue