summaryrefslogtreecommitdiff
path: root/cryptdll.vcxproj
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-06 12:03:58 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-06 12:03:58 -0400
commit7d2f7017185bb3e5639ba64317d37eab28fd03ce (patch)
tree51033cabca1156e3fbce4e8d1b9d934e45e17759 /cryptdll.vcxproj
parent0b68429f2e6b27cde55687eec9771508e3beffe8 (diff)
downloadcryptopp-git-7d2f7017185bb3e5639ba64317d37eab28fd03ce.tar.gz
Revert 2ba75d4adfe7c011.
It worked because we were picking up a previously built cryptest.exe. The task does not build it
Diffstat (limited to 'cryptdll.vcxproj')
-rw-r--r--cryptdll.vcxproj17
1 files changed, 17 insertions, 0 deletions
diff --git a/cryptdll.vcxproj b/cryptdll.vcxproj
index 0228c1ff..610a9bcd 100644
--- a/cryptdll.vcxproj
+++ b/cryptdll.vcxproj
@@ -128,11 +128,28 @@
</ItemDefinitionGroup>
<!-- Win32/Debug cryptest.exe for DLL MAC'ing -->
+ <!-- Broken at the moment; see http://stackoverflow.com/q/39900437 -->
+ <!--
<Target Condition="!Exists('Win32\Output\Debug\cryptest.exe')" Name="MAC tool" Label="MAC tool">
+ <Message>Creating Win32/Debug cryptest.exe for MAC computation</Message>
+ <MSbuild
+ Projects="cryptlib.vcxproj"
+ Properties="Configuration=Debug;Platform=Win32;"/>
<MSbuild
Projects="cryptest.vcxproj"
Properties="Configuration=Debug;Platform=Win32;"/>
</Target>
+ -->
+
+ <ItemDefinitionGroup Condition="!Exists('Win32\Output\Debug\cryptest.exe')" Label="MAC tool">
+ <PreBuildEvent>
+ <Message>Creating Win32/Debug cryptest.exe for MAC computation</Message>
+ <Command>
+ msbuild /t:Build /p:Configuration=Debug;Platform=Win32 cryptlib.vcxproj
+ msbuild /t:Build /p:Configuration=Debug;Platform=Win32 cryptest.vcxproj
+ </Command>
+ </PreBuildEvent>
+ </ItemDefinitionGroup>
<!-- DLL MAC'ing performed by cryptest.exe -->
<ItemDefinitionGroup Label="DLL MAC">