Skip to content

Commit

Permalink
fixed Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
DeckerSU committed Mar 7, 2018
1 parent 57d336c commit d20f3b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion iguana/keccak.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@
#ifdef __cplusplus
extern "C"{
#endif


#if defined(WIN32)
#include <stdint.h>
#endif

/*
* Parameters:
*
Expand Down
3 changes: 2 additions & 1 deletion marketmaker.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@
<ClCompile Include="crypto777\tweetnacl.c" />
<ClCompile Include="iguana\exchanges\mm.c" />
<ClCompile Include="iguana\groestl.c" />
<ClCompile Include="iguana\keccak.c" />
<ClCompile Include="iguana\mini-gmp.c" />
<ClCompile Include="iguana\secp256k1\src\secp256k1.c" />
<ClCompile Include="iguana\segwit_addr.c" />
Expand All @@ -257,4 +258,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
5 changes: 4 additions & 1 deletion marketmaker.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,11 @@
<ClCompile Include="iguana\groestl.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="iguana\keccak.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<Text Include="ReadMe.txt" />
</ItemGroup>
</Project>
</Project>

0 comments on commit d20f3b2

Please sign in to comment.