randomx-dll.vcxproj 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|x64">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x64</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ClInclude Include="..\src\aes_hash.hpp" />
  23. <ClInclude Include="..\src\allocator.hpp" />
  24. <ClInclude Include="..\src\argon2.h" />
  25. <ClInclude Include="..\src\argon2_core.h" />
  26. <ClInclude Include="..\src\assembly_generator_x86.hpp" />
  27. <ClInclude Include="..\src\blake2_generator.hpp" />
  28. <ClInclude Include="..\src\common.hpp" />
  29. <ClInclude Include="..\src\configuration.h" />
  30. <ClInclude Include="..\src\dataset.hpp" />
  31. <ClInclude Include="..\src\instruction.hpp" />
  32. <ClInclude Include="..\src\instruction_weights.hpp" />
  33. <ClInclude Include="..\src\intrin_portable.h" />
  34. <ClInclude Include="..\src\jit_compiler.hpp" />
  35. <ClInclude Include="..\src\jit_compiler_a64.hpp" />
  36. <ClInclude Include="..\src\jit_compiler_fallback.hpp" />
  37. <ClInclude Include="..\src\jit_compiler_x86.hpp" />
  38. <ClInclude Include="..\src\jit_compiler_x86_static.hpp" />
  39. <ClInclude Include="..\src\program.hpp" />
  40. <ClInclude Include="..\src\randomx.h" />
  41. <ClInclude Include="..\src\reciprocal.h" />
  42. <ClInclude Include="..\src\soft_aes.h" />
  43. <ClInclude Include="..\src\superscalar.hpp" />
  44. <ClInclude Include="..\src\superscalar_program.hpp" />
  45. <ClInclude Include="..\src\virtual_machine.hpp" />
  46. <ClInclude Include="..\src\virtual_memory.h" />
  47. <ClInclude Include="..\src\vm_compiled.hpp" />
  48. <ClInclude Include="..\src\vm_compiled_light.hpp" />
  49. <ClInclude Include="..\src\vm_interpreted.hpp" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <MASM Include="..\src\jit_compiler_x86_static.asm" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <ClCompile Include="..\src\aes_hash.cpp" />
  56. <ClCompile Include="..\src\allocator.cpp" />
  57. <ClCompile Include="..\src\argon2_avx2.c">
  58. <EnableEnhancedInstructionSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
  59. </ClCompile>
  60. <ClCompile Include="..\src\argon2_core.c" />
  61. <ClCompile Include="..\src\argon2_ref.c" />
  62. <ClCompile Include="..\src\argon2_ssse3.c" />
  63. <ClCompile Include="..\src\assembly_generator_x86.cpp" />
  64. <ClCompile Include="..\src\blake2\blake2b.c" />
  65. <ClCompile Include="..\src\blake2_generator.cpp" />
  66. <ClCompile Include="..\src\bytecode_machine.cpp" />
  67. <ClCompile Include="..\src\cpu.cpp" />
  68. <ClCompile Include="..\src\dataset.cpp" />
  69. <ClCompile Include="..\src\instruction.cpp" />
  70. <ClCompile Include="..\src\instructions_portable.cpp" />
  71. <ClCompile Include="..\src\jit_compiler_x86.cpp" />
  72. <ClCompile Include="..\src\randomx.cpp" />
  73. <ClCompile Include="..\src\reciprocal.c" />
  74. <ClCompile Include="..\src\soft_aes.cpp" />
  75. <ClCompile Include="..\src\superscalar.cpp" />
  76. <ClCompile Include="..\src\virtual_machine.cpp" />
  77. <ClCompile Include="..\src\virtual_memory.c" />
  78. <ClCompile Include="..\src\vm_compiled.cpp" />
  79. <ClCompile Include="..\src\vm_compiled_light.cpp" />
  80. <ClCompile Include="..\src\vm_interpreted.cpp" />
  81. <ClCompile Include="..\src\vm_interpreted_light.cpp" />
  82. </ItemGroup>
  83. <PropertyGroup Label="Globals">
  84. <VCProjectVersion>15.0</VCProjectVersion>
  85. <ProjectGuid>{59560AD8-18E3-463E-A941-BBD808EC7C83}</ProjectGuid>
  86. <Keyword>Win32Proj</Keyword>
  87. <RootNamespace>randomxdll</RootNamespace>
  88. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  89. </PropertyGroup>
  90. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  91. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  92. <ConfigurationType>DynamicLibrary</ConfigurationType>
  93. <UseDebugLibraries>true</UseDebugLibraries>
  94. <PlatformToolset>v143</PlatformToolset>
  95. <CharacterSet>Unicode</CharacterSet>
  96. </PropertyGroup>
  97. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  98. <ConfigurationType>DynamicLibrary</ConfigurationType>
  99. <UseDebugLibraries>false</UseDebugLibraries>
  100. <PlatformToolset>v143</PlatformToolset>
  101. <WholeProgramOptimization>true</WholeProgramOptimization>
  102. <CharacterSet>Unicode</CharacterSet>
  103. </PropertyGroup>
  104. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  105. <ConfigurationType>DynamicLibrary</ConfigurationType>
  106. <UseDebugLibraries>true</UseDebugLibraries>
  107. <PlatformToolset>v143</PlatformToolset>
  108. <CharacterSet>Unicode</CharacterSet>
  109. </PropertyGroup>
  110. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  111. <ConfigurationType>DynamicLibrary</ConfigurationType>
  112. <UseDebugLibraries>false</UseDebugLibraries>
  113. <PlatformToolset>v143</PlatformToolset>
  114. <WholeProgramOptimization>true</WholeProgramOptimization>
  115. <CharacterSet>Unicode</CharacterSet>
  116. </PropertyGroup>
  117. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  118. <ImportGroup Label="ExtensionSettings">
  119. <Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
  120. </ImportGroup>
  121. <ImportGroup Label="Shared">
  122. </ImportGroup>
  123. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  124. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  125. </ImportGroup>
  126. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  127. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  128. </ImportGroup>
  129. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  130. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  131. </ImportGroup>
  132. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  133. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  134. </ImportGroup>
  135. <PropertyGroup Label="UserMacros" />
  136. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  137. <LinkIncremental>false</LinkIncremental>
  138. </PropertyGroup>
  139. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  140. <LinkIncremental>true</LinkIncremental>
  141. </PropertyGroup>
  142. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  143. <LinkIncremental>true</LinkIncremental>
  144. </PropertyGroup>
  145. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  146. <LinkIncremental>false</LinkIncremental>
  147. <TargetName>randomx</TargetName>
  148. </PropertyGroup>
  149. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  150. <ClCompile>
  151. <PrecompiledHeader>Use</PrecompiledHeader>
  152. <WarningLevel>Level3</WarningLevel>
  153. <Optimization>MaxSpeed</Optimization>
  154. <FunctionLevelLinking>true</FunctionLevelLinking>
  155. <IntrinsicFunctions>true</IntrinsicFunctions>
  156. <SDLCheck>true</SDLCheck>
  157. <PreprocessorDefinitions>WIN32;NDEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  158. <ConformanceMode>true</ConformanceMode>
  159. </ClCompile>
  160. <Link>
  161. <SubSystem>Windows</SubSystem>
  162. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  163. <OptimizeReferences>true</OptimizeReferences>
  164. <GenerateDebugInformation>true</GenerateDebugInformation>
  165. </Link>
  166. </ItemDefinitionGroup>
  167. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  168. <ClCompile>
  169. <PrecompiledHeader>Use</PrecompiledHeader>
  170. <WarningLevel>Level3</WarningLevel>
  171. <Optimization>Disabled</Optimization>
  172. <SDLCheck>true</SDLCheck>
  173. <PreprocessorDefinitions>WIN32;_DEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  174. <ConformanceMode>true</ConformanceMode>
  175. </ClCompile>
  176. <Link>
  177. <SubSystem>Windows</SubSystem>
  178. <GenerateDebugInformation>true</GenerateDebugInformation>
  179. </Link>
  180. </ItemDefinitionGroup>
  181. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  182. <ClCompile>
  183. <PrecompiledHeader>Use</PrecompiledHeader>
  184. <WarningLevel>Level3</WarningLevel>
  185. <Optimization>Disabled</Optimization>
  186. <SDLCheck>true</SDLCheck>
  187. <PreprocessorDefinitions>_DEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  188. <ConformanceMode>true</ConformanceMode>
  189. </ClCompile>
  190. <Link>
  191. <SubSystem>Windows</SubSystem>
  192. <GenerateDebugInformation>true</GenerateDebugInformation>
  193. </Link>
  194. </ItemDefinitionGroup>
  195. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  196. <ClCompile>
  197. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  198. <WarningLevel>Level3</WarningLevel>
  199. <Optimization>MaxSpeed</Optimization>
  200. <FunctionLevelLinking>true</FunctionLevelLinking>
  201. <IntrinsicFunctions>true</IntrinsicFunctions>
  202. <SDLCheck>false</SDLCheck>
  203. <PreprocessorDefinitions>NDEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;RANDOMX_EXPORT=__declspec(dllexport)</PreprocessorDefinitions>
  204. <ConformanceMode>true</ConformanceMode>
  205. </ClCompile>
  206. <Link>
  207. <SubSystem>Windows</SubSystem>
  208. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  209. <OptimizeReferences>true</OptimizeReferences>
  210. <GenerateDebugInformation>true</GenerateDebugInformation>
  211. </Link>
  212. </ItemDefinitionGroup>
  213. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  214. <ImportGroup Label="ExtensionTargets">
  215. <Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
  216. </ImportGroup>
  217. </Project>