randomx-dll.vcxproj 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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.hpp" />
  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_core.c" />
  58. <ClCompile Include="..\src\argon2_ref.c" />
  59. <ClCompile Include="..\src\assembly_generator_x86.cpp" />
  60. <ClCompile Include="..\src\blake2\blake2b.c" />
  61. <ClCompile Include="..\src\blake2_generator.cpp" />
  62. <ClCompile Include="..\src\bytecode_machine.cpp" />
  63. <ClCompile Include="..\src\dataset.cpp" />
  64. <ClCompile Include="..\src\instruction.cpp" />
  65. <ClCompile Include="..\src\instructions_portable.cpp" />
  66. <ClCompile Include="..\src\jit_compiler_x86.cpp" />
  67. <ClCompile Include="..\src\randomx.cpp" />
  68. <ClCompile Include="..\src\reciprocal.c" />
  69. <ClCompile Include="..\src\soft_aes.cpp" />
  70. <ClCompile Include="..\src\superscalar.cpp" />
  71. <ClCompile Include="..\src\virtual_machine.cpp" />
  72. <ClCompile Include="..\src\virtual_memory.cpp" />
  73. <ClCompile Include="..\src\vm_compiled.cpp" />
  74. <ClCompile Include="..\src\vm_compiled_light.cpp" />
  75. <ClCompile Include="..\src\vm_interpreted.cpp" />
  76. <ClCompile Include="..\src\vm_interpreted_light.cpp" />
  77. </ItemGroup>
  78. <PropertyGroup Label="Globals">
  79. <VCProjectVersion>15.0</VCProjectVersion>
  80. <ProjectGuid>{59560AD8-18E3-463E-A941-BBD808EC7C83}</ProjectGuid>
  81. <Keyword>Win32Proj</Keyword>
  82. <RootNamespace>randomxdll</RootNamespace>
  83. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  84. </PropertyGroup>
  85. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  86. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  87. <ConfigurationType>DynamicLibrary</ConfigurationType>
  88. <UseDebugLibraries>true</UseDebugLibraries>
  89. <PlatformToolset>v142</PlatformToolset>
  90. <CharacterSet>Unicode</CharacterSet>
  91. </PropertyGroup>
  92. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  93. <ConfigurationType>DynamicLibrary</ConfigurationType>
  94. <UseDebugLibraries>false</UseDebugLibraries>
  95. <PlatformToolset>v142</PlatformToolset>
  96. <WholeProgramOptimization>true</WholeProgramOptimization>
  97. <CharacterSet>Unicode</CharacterSet>
  98. </PropertyGroup>
  99. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  100. <ConfigurationType>DynamicLibrary</ConfigurationType>
  101. <UseDebugLibraries>true</UseDebugLibraries>
  102. <PlatformToolset>v142</PlatformToolset>
  103. <CharacterSet>Unicode</CharacterSet>
  104. </PropertyGroup>
  105. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  106. <ConfigurationType>DynamicLibrary</ConfigurationType>
  107. <UseDebugLibraries>false</UseDebugLibraries>
  108. <PlatformToolset>v142</PlatformToolset>
  109. <WholeProgramOptimization>true</WholeProgramOptimization>
  110. <CharacterSet>Unicode</CharacterSet>
  111. </PropertyGroup>
  112. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  113. <ImportGroup Label="ExtensionSettings">
  114. <Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
  115. </ImportGroup>
  116. <ImportGroup Label="Shared">
  117. </ImportGroup>
  118. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  119. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  120. </ImportGroup>
  121. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  122. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  123. </ImportGroup>
  124. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  125. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  126. </ImportGroup>
  127. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  128. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  129. </ImportGroup>
  130. <PropertyGroup Label="UserMacros" />
  131. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  132. <LinkIncremental>false</LinkIncremental>
  133. </PropertyGroup>
  134. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  135. <LinkIncremental>true</LinkIncremental>
  136. </PropertyGroup>
  137. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  138. <LinkIncremental>true</LinkIncremental>
  139. </PropertyGroup>
  140. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  141. <LinkIncremental>false</LinkIncremental>
  142. <TargetName>randomx</TargetName>
  143. </PropertyGroup>
  144. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  145. <ClCompile>
  146. <PrecompiledHeader>Use</PrecompiledHeader>
  147. <WarningLevel>Level3</WarningLevel>
  148. <Optimization>MaxSpeed</Optimization>
  149. <FunctionLevelLinking>true</FunctionLevelLinking>
  150. <IntrinsicFunctions>true</IntrinsicFunctions>
  151. <SDLCheck>true</SDLCheck>
  152. <PreprocessorDefinitions>WIN32;NDEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  153. <ConformanceMode>true</ConformanceMode>
  154. </ClCompile>
  155. <Link>
  156. <SubSystem>Windows</SubSystem>
  157. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  158. <OptimizeReferences>true</OptimizeReferences>
  159. <GenerateDebugInformation>true</GenerateDebugInformation>
  160. </Link>
  161. </ItemDefinitionGroup>
  162. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  163. <ClCompile>
  164. <PrecompiledHeader>Use</PrecompiledHeader>
  165. <WarningLevel>Level3</WarningLevel>
  166. <Optimization>Disabled</Optimization>
  167. <SDLCheck>true</SDLCheck>
  168. <PreprocessorDefinitions>WIN32;_DEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  169. <ConformanceMode>true</ConformanceMode>
  170. </ClCompile>
  171. <Link>
  172. <SubSystem>Windows</SubSystem>
  173. <GenerateDebugInformation>true</GenerateDebugInformation>
  174. </Link>
  175. </ItemDefinitionGroup>
  176. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  177. <ClCompile>
  178. <PrecompiledHeader>Use</PrecompiledHeader>
  179. <WarningLevel>Level3</WarningLevel>
  180. <Optimization>Disabled</Optimization>
  181. <SDLCheck>true</SDLCheck>
  182. <PreprocessorDefinitions>_DEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  183. <ConformanceMode>true</ConformanceMode>
  184. </ClCompile>
  185. <Link>
  186. <SubSystem>Windows</SubSystem>
  187. <GenerateDebugInformation>true</GenerateDebugInformation>
  188. </Link>
  189. </ItemDefinitionGroup>
  190. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  191. <ClCompile>
  192. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  193. <WarningLevel>Level3</WarningLevel>
  194. <Optimization>MaxSpeed</Optimization>
  195. <FunctionLevelLinking>true</FunctionLevelLinking>
  196. <IntrinsicFunctions>true</IntrinsicFunctions>
  197. <SDLCheck>false</SDLCheck>
  198. <PreprocessorDefinitions>NDEBUG;RANDOMXDLL_EXPORTS;_WINDOWS;_USRDLL;RANDOMX_EXPORT=__declspec(dllexport)</PreprocessorDefinitions>
  199. <ConformanceMode>true</ConformanceMode>
  200. </ClCompile>
  201. <Link>
  202. <SubSystem>Windows</SubSystem>
  203. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  204. <OptimizeReferences>true</OptimizeReferences>
  205. <GenerateDebugInformation>true</GenerateDebugInformation>
  206. </Link>
  207. </ItemDefinitionGroup>
  208. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  209. <ImportGroup Label="ExtensionTargets">
  210. <Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
  211. </ImportGroup>
  212. </Project>