mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
[Build] Fixed up Stormlib
This commit is contained in:
parent
4613154144
commit
868302dd0b
4 changed files with 250 additions and 251 deletions
|
|
@ -30,7 +30,7 @@
|
|||
#endif
|
||||
|
||||
#include <string>
|
||||
#include "StormLib.h"
|
||||
#include "..\..\dep\Stormlib\src\StormLib.h"
|
||||
#include <deque>
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
|
|||
11
win/VC120/.gitignore
vendored
11
win/VC120/.gitignore
vendored
|
|
@ -7,11 +7,10 @@
|
|||
# command after changing this file, to see if there are
|
||||
# any tracked files which get ignored after the change.
|
||||
#
|
||||
# MaNGOS generated files at Windows build
|
||||
# Special folder that is created by the ReSharper Visual Studio Addon
|
||||
#
|
||||
|
||||
*__Win32_Debug*
|
||||
*__x64_Debug*
|
||||
*__Win32_Release*
|
||||
*__x64_Release*
|
||||
*.log
|
||||
_ReSharper*
|
||||
*_dir
|
||||
Release
|
||||
Debug
|
||||
|
|
@ -180,7 +180,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)DAD.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)DAD.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">
|
||||
|
|
@ -221,7 +221,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)DAS.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugAS|x64'">
|
||||
|
|
@ -243,7 +243,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)DAS.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseAD|Win32'">
|
||||
|
|
@ -259,7 +259,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)RAD.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseAD|x64'">
|
||||
|
|
@ -278,7 +278,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)RAD.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)RAS.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">
|
||||
|
|
@ -313,7 +313,7 @@
|
|||
<OutputFile>$(OutDir)$(ProjectName)RAS.lib</OutputFile>
|
||||
</Lib>
|
||||
<PostBuildEvent>
|
||||
<Command>StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
<Command>..\..\dep\src\stormlib\StormLib.bat $(Platform) $(Configuration)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
|
|
@ -322,17 +322,17 @@
|
|||
<None Include="doc\The MoPaQ File Format 1.0.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="src\StormCommon.h" />
|
||||
<ClInclude Include="src\StormLib.h" />
|
||||
<ClInclude Include="src\StormPort.h" />
|
||||
<ClInclude Include="src\adpcm\adpcm.h" />
|
||||
<ClInclude Include="src\huffman\huff.h" />
|
||||
<ClInclude Include="src\pklib\pklib.h" />
|
||||
<ClInclude Include="src\sparse\sparse.h" />
|
||||
<ClInclude Include="src\jenkins\lookup.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\StormCommon.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\StormLib.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\StormPort.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\adpcm\adpcm.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\huffman\huff.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\pklib\pklib.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\sparse\sparse.h" />
|
||||
<ClInclude Include="..\..\dep\StormLib\src\jenkins\lookup.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="src\FileStream.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\FileStream.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -342,7 +342,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SBaseCommon.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SBaseCommon.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -352,7 +352,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SBaseFileTable.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SBaseFileTable.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -362,7 +362,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SCompression.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SCompression.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -372,7 +372,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileAddFile.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileAddFile.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -382,7 +382,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileAttributes.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileAttributes.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -392,7 +392,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileCompactArchive.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileCompactArchive.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -402,7 +402,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileCreateArchive.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileCreateArchive.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -412,7 +412,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileExtractFile.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileExtractFile.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -422,7 +422,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileFindFile.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileFindFile.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -432,7 +432,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileListFile.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileListFile.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -442,7 +442,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileOpenArchive.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileOpenArchive.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -452,7 +452,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileOpenFileEx.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileOpenFileEx.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -462,8 +462,8 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFilePatchArchives.cpp" />
|
||||
<ClCompile Include="src\SFileReadFile.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFilePatchArchives.cpp" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileReadFile.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -473,7 +473,7 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\SFileVerify.cpp">
|
||||
<ClCompile Include="..\..\dep\StormLib\src\SFileVerify.cpp">
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAD|x64'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='DebugAS|Win32'">Level4</WarningLevel>
|
||||
|
|
@ -483,212 +483,212 @@
|
|||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|Win32'">Level4</WarningLevel>
|
||||
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='ReleaseAS|x64'">Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
<ClCompile Include="src\adpcm\adpcm.cpp" />
|
||||
<ClCompile Include="src\bzip2\blocksort.c" />
|
||||
<ClCompile Include="src\bzip2\bzlib.c" />
|
||||
<ClCompile Include="src\bzip2\compress.c" />
|
||||
<ClCompile Include="src\bzip2\crctable.c" />
|
||||
<ClCompile Include="src\bzip2\decompress.c" />
|
||||
<ClCompile Include="src\bzip2\huffman.c" />
|
||||
<ClCompile Include="src\bzip2\randtable.c" />
|
||||
<ClCompile Include="src\huffman\huff.cpp" />
|
||||
<ClCompile Include="src\libtomcrypt\src\hashes\hash_memory.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\hashes\md5.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\hashes\sha1.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\math\ltm_desc.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\math\multi.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\math\rand_prime.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\base64_decode.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_argchk.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_find_hash.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_find_prng.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_hash_descriptor.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_hash_is_valid.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_libc.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_ltc_mp_descriptor.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_prng_descriptor.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_prng_is_valid.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_register_hash.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\crypt_register_prng.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\misc\zeromem.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_bit_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_boolean.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_choice.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_ia5_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_integer.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_object_identifier.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_octet_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_printable_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_sequence_ex.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_sequence_flexi.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_sequence_multi.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_short_integer.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_utctime.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_decode_utf8_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_bit_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_boolean.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_ia5_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_integer.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_object_identifier.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_octet_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_printable_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_sequence.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_short_integer.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_utctime.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_length_utf8_string.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\asn1\der_sequence_free.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\ecc\ltc_ecc_map.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\ecc\ltc_ecc_mul2add.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\ecc\ltc_ecc_mulmod.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\ecc\ltc_ecc_points.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\ecc\ltc_ecc_projective_add_point.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\ecc\ltc_ecc_projective_dbl_point.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\pkcs1\pkcs_1_mgf1.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\pkcs1\pkcs_1_oaep_decode.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\pkcs1\pkcs_1_pss_decode.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\pkcs1\pkcs_1_v1_5_decode.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\rsa\rsa_exptmod.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\rsa\rsa_free.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\rsa\rsa_import.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\rsa\rsa_make_key.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\rsa\rsa_verify_hash.c" />
|
||||
<ClCompile Include="src\libtomcrypt\src\pk\rsa\rsa_verify_simple.c" />
|
||||
<ClCompile Include="src\libtommath\bn_fast_mp_invmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_fast_mp_montgomery_reduce.c" />
|
||||
<ClCompile Include="src\libtommath\bn_fast_s_mp_mul_digs.c" />
|
||||
<ClCompile Include="src\libtommath\bn_fast_s_mp_mul_high_digs.c" />
|
||||
<ClCompile Include="src\libtommath\bn_fast_s_mp_sqr.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_2expt.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_abs.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_add.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_add_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_addmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_and.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_clamp.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_clear.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_clear_multi.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_cmp.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_cmp_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_cmp_mag.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_cnt_lsb.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_copy.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_count_bits.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_div.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_div_2.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_div_2d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_div_3.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_div_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_dr_is_modulus.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_dr_reduce.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_dr_setup.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_exch.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_expt_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_exptmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_exptmod_fast.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_exteuclid.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_fread.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_fwrite.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_gcd.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_get_int.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_grow.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_init.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_init_copy.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_init_multi.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_init_set.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_init_set_int.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_init_size.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_invmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_invmod_slow.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_is_square.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_jacobi.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_karatsuba_mul.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_karatsuba_sqr.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_lcm.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_lshd.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mod_2d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mod_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_montgomery_calc_normalization.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_montgomery_reduce.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_montgomery_setup.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mul.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mul_2.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mul_2d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mul_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_mulmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_n_root.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_neg.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_or.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_fermat.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_is_divisible.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_is_prime.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_miller_rabin.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_next_prime.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_rabin_miller_trials.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_prime_random_ex.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_radix_size.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_radix_smap.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_rand.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_read_radix.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_read_signed_bin.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_read_unsigned_bin.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_2k.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_2k_l.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_2k_setup.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_2k_setup_l.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_is_2k.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_is_2k_l.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_reduce_setup.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_rshd.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_set.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_set_int.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_shrink.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_signed_bin_size.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_sqr.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_sqrmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_sqrt.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_sub.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_sub_d.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_submod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_to_signed_bin.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_to_signed_bin_n.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_to_unsigned_bin.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_to_unsigned_bin_n.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_toom_mul.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_toom_sqr.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_toradix.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_toradix_n.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_unsigned_bin_size.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_xor.c" />
|
||||
<ClCompile Include="src\libtommath\bn_mp_zero.c" />
|
||||
<ClCompile Include="src\libtommath\bn_prime_tab.c" />
|
||||
<ClCompile Include="src\libtommath\bn_reverse.c" />
|
||||
<ClCompile Include="src\libtommath\bn_s_mp_add.c" />
|
||||
<ClCompile Include="src\libtommath\bn_s_mp_exptmod.c" />
|
||||
<ClCompile Include="src\libtommath\bn_s_mp_mul_digs.c" />
|
||||
<ClCompile Include="src\libtommath\bn_s_mp_mul_high_digs.c" />
|
||||
<ClCompile Include="src\libtommath\bn_s_mp_sqr.c" />
|
||||
<ClCompile Include="src\libtommath\bn_s_mp_sub.c" />
|
||||
<ClCompile Include="src\libtommath\bncore.c" />
|
||||
<ClCompile Include="src\lzma\C\LzFind.c" />
|
||||
<ClCompile Include="src\lzma\C\LzFindMt.c" />
|
||||
<ClCompile Include="src\lzma\C\LzmaDec.c" />
|
||||
<ClCompile Include="src\lzma\C\LzmaEnc.c" />
|
||||
<ClCompile Include="src\lzma\C\Threads.c" />
|
||||
<ClCompile Include="src\pklib\explode.c" />
|
||||
<ClCompile Include="src\pklib\implode.c" />
|
||||
<ClCompile Include="src\sparse\sparse.cpp" />
|
||||
<ClCompile Include="src\zlib\adler32.c" />
|
||||
<ClCompile Include="src\zlib\compress2.c" />
|
||||
<ClCompile Include="src\zlib\crc32.c" />
|
||||
<ClCompile Include="src\zlib\deflate.c" />
|
||||
<ClCompile Include="src\zlib\inffast.c" />
|
||||
<ClCompile Include="src\zlib\inflate.c" />
|
||||
<ClCompile Include="src\zlib\inftrees.c" />
|
||||
<ClCompile Include="src\zlib\trees.c" />
|
||||
<ClCompile Include="src\zlib\zutil.c" />
|
||||
<ClCompile Include="src\jenkins\lookup3.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\adpcm\adpcm.cpp" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\blocksort.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\bzlib.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\compress.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\crctable.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\decompress.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\huffman.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\bzip2\randtable.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\huffman\huff.cpp" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\hashes\hash_memory.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\hashes\md5.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\hashes\sha1.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\math\ltm_desc.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\math\multi.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\math\rand_prime.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\base64_decode.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_argchk.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_find_hash.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_find_prng.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_hash_descriptor.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_hash_is_valid.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_libc.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_ltc_mp_descriptor.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_prng_descriptor.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_prng_is_valid.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_register_hash.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\crypt_register_prng.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\misc\zeromem.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_bit_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_boolean.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_choice.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_ia5_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_integer.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_object_identifier.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_octet_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_printable_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_sequence_ex.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_sequence_flexi.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_sequence_multi.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_short_integer.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_utctime.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_decode_utf8_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_bit_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_boolean.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_ia5_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_integer.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_object_identifier.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_octet_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_printable_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_sequence.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_short_integer.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_utctime.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_length_utf8_string.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\asn1\der_sequence_free.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\ecc\ltc_ecc_map.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\ecc\ltc_ecc_mul2add.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\ecc\ltc_ecc_mulmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\ecc\ltc_ecc_points.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\ecc\ltc_ecc_projective_add_point.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\ecc\ltc_ecc_projective_dbl_point.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\pkcs1\pkcs_1_mgf1.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\pkcs1\pkcs_1_oaep_decode.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\pkcs1\pkcs_1_pss_decode.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\pkcs1\pkcs_1_v1_5_decode.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\rsa\rsa_exptmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\rsa\rsa_free.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\rsa\rsa_import.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\rsa\rsa_make_key.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\rsa\rsa_verify_hash.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtomcrypt\src\pk\rsa\rsa_verify_simple.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_fast_mp_invmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_fast_mp_montgomery_reduce.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_fast_s_mp_mul_digs.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_fast_s_mp_mul_high_digs.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_fast_s_mp_sqr.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_2expt.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_abs.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_add.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_add_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_addmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_and.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_clamp.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_clear.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_clear_multi.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_cmp.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_cmp_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_cmp_mag.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_cnt_lsb.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_copy.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_count_bits.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_div.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_div_2.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_div_2d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_div_3.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_div_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_dr_is_modulus.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_dr_reduce.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_dr_setup.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_exch.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_expt_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_exptmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_exptmod_fast.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_exteuclid.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_fread.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_fwrite.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_gcd.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_get_int.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_grow.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_init.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_init_copy.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_init_multi.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_init_set.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_init_set_int.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_init_size.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_invmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_invmod_slow.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_is_square.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_jacobi.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_karatsuba_mul.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_karatsuba_sqr.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_lcm.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_lshd.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mod_2d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mod_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_montgomery_calc_normalization.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_montgomery_reduce.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_montgomery_setup.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mul.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mul_2.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mul_2d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mul_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_mulmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_n_root.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_neg.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_or.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_fermat.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_is_divisible.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_is_prime.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_miller_rabin.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_next_prime.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_rabin_miller_trials.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_prime_random_ex.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_radix_size.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_radix_smap.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_rand.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_read_radix.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_read_signed_bin.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_read_unsigned_bin.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_2k.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_2k_l.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_2k_setup.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_2k_setup_l.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_is_2k.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_is_2k_l.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_reduce_setup.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_rshd.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_set.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_set_int.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_shrink.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_signed_bin_size.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_sqr.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_sqrmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_sqrt.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_sub.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_sub_d.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_submod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_to_signed_bin.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_to_signed_bin_n.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_to_unsigned_bin.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_to_unsigned_bin_n.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_toom_mul.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_toom_sqr.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_toradix.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_toradix_n.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_unsigned_bin_size.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_xor.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_mp_zero.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_prime_tab.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_reverse.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_s_mp_add.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_s_mp_exptmod.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_s_mp_mul_digs.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_s_mp_mul_high_digs.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_s_mp_sqr.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bn_s_mp_sub.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\libtommath\bncore.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\lzma\C\LzFind.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\lzma\C\LzFindMt.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\lzma\C\LzmaDec.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\lzma\C\LzmaEnc.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\lzma\C\Threads.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\pklib\explode.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\pklib\implode.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\sparse\sparse.cpp" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\adler32.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\compress2.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\crc32.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\deflate.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\inffast.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\inflate.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\inftrees.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\trees.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\zlib\zutil.c" />
|
||||
<ClCompile Include="..\..\dep\StormLib\src\jenkins\lookup3.c" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions> /Zm500 %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\dep\StormLib;\..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AssemblerListingLocation>Release/</AssemblerListingLocation>
|
||||
<CompileAs>CompileAsCpp</CompileAs>
|
||||
<DisableSpecificWarnings>4996;4355;4244;4267</DisableSpecificWarnings>
|
||||
|
|
@ -69,10 +69,10 @@
|
|||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>PREPARED_SLN;WIN32;_WINDOWS;NDEBUG;HAVE_CONFIG_H;MANGOS;DO_MYSQL;WIN32;_WIN32;USE_STANDARD_MALLOC;MMAP_GENERATOR;NO_CORE_FUNCS;NDEBUG;_CRT_SECURE_NO_WARNINGS;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\dep\StormLib;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\dep\StormLib;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions> /Zm500 %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\dep\StormLib;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AssemblerListingLocation>Debug/</AssemblerListingLocation>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<CompileAs>CompileAsCpp</CompileAs>
|
||||
|
|
@ -103,10 +103,10 @@
|
|||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>PREPARED_SLN;WIN32;_WINDOWS;_DEBUG;HAVE_CONFIG_H;MANGOS;DO_MYSQL;WIN32;_WIN32;USE_STANDARD_MALLOC;MMAP_GENERATOR;NO_CORE_FUNCS;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\dep\StormLib;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\..\dep\include;..\..\dep\StormLib;..\..\src\shared;..\..\src\game\vmap;..\..\dep\include\g3dlite;..\..\src\framework;..\..\dep\acelite;..\..\dep\libmpq;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue