summaryrefslogtreecommitdiff
path: root/cryptlib.vcxproj
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-11-08 16:20:31 -0500
committerJeffrey Walton <noloader@gmail.com>2018-11-08 16:20:31 -0500
commitd9011f07d2d5bde9c0710ac481e2b61fd9f51a77 (patch)
tree0cda17d78a9690ed7d2403735b77fa1979b1a81a /cryptlib.vcxproj
parent9b31bc189ce9ba08d9d22e1a63933a179df57fa2 (diff)
downloadcryptopp-git-d9011f07d2d5bde9c0710ac481e2b61fd9f51a77.tar.gz
Add ChaCha AVX2 implementation (GH #735)
Diffstat (limited to 'cryptlib.vcxproj')
-rw-r--r--cryptlib.vcxproj6
1 files changed, 5 insertions, 1 deletions
diff --git a/cryptlib.vcxproj b/cryptlib.vcxproj
index b6917bf5..f28fd431 100644
--- a/cryptlib.vcxproj
+++ b/cryptlib.vcxproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Microsoft documentation for VCXPROJ file format is located at -->
<!-- the following URL. The documentation leaves a lot to be desired. -->
@@ -193,6 +193,10 @@
<ClCompile Include="ccm.cpp" />
<ClCompile Include="chacha.cpp" />
<ClCompile Include="chacha-simd.cpp" />
+ <ClCompile Include="chacha-avx.cpp">
+ <!-- Requires Visual Studio 2013 and above -->
+ <ExcludedFromBuild Condition=" '$(PlatformToolset)' == 'v100' Or '$(PlatformToolset)' == 'v110' ">true</ExcludedFromBuild>
+ </ClCompile>
<ClCompile Include="cham.cpp" />
<ClCompile Include="cham-simd.cpp" />
<ClCompile Include="channels.cpp" />