Browse Source
Merge pull request #652 from DeckerSU/dev-decker-dev
fixed Windows build
patch-3
jl777
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
11 additions and
3 deletions
-
iguana/keccak.c
-
marketmaker.vcxproj
-
marketmaker.vcxproj.filters
|
|
@ -38,7 +38,11 @@ |
|
|
|
#ifdef __cplusplus |
|
|
|
extern "C"{ |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if defined(WIN32) |
|
|
|
#include <stdint.h> |
|
|
|
#endif |
|
|
|
|
|
|
|
/*
|
|
|
|
* Parameters: |
|
|
|
* |
|
|
|
|
|
@ -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" /> |
|
|
@ -257,4 +258,4 @@ |
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|
|
|
<ImportGroup Label="ExtensionTargets"> |
|
|
|
</ImportGroup> |
|
|
|
</Project> |
|
|
|
</Project> |
|
|
|
|
|
@ -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> |
|
|
|