mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 01:49:41 +00:00
Add separate ASM file for XGETBV64 and CPUID64 to Visual Studio cryptdll project (GH #1240)
Also see the comment in Commit 0432085157
, where OgreTransporter made a comment about the deprecated cryptdll.vcxproj project.
This commit is contained in:
parent
af7d1050bf
commit
1e20219ecd
@ -173,6 +173,11 @@
|
||||
<Command>ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)x64dll.obj" "%(FullPath)"</Command>
|
||||
<Outputs>$(IntDir)x64dll.obj;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
<CustomBuild Condition="'$(Platform)'=='x64' AND ('$(Configuration)'=='Debug' Or '$(Configuration)'=='Release')" Include="cpuid64.asm">
|
||||
<Message>Building and assembling cpuid64.asm</Message>
|
||||
<Command>ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)cpuid64.obj" "%(FullPath)"</Command>
|
||||
<Outputs>$(IntDir)cpuid64.obj;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<!-- Source Files -->
|
||||
<ItemGroup>
|
||||
|
@ -449,5 +449,8 @@
|
||||
<CustomBuild Include="x64dll.asm">
|
||||
<Filter>Source Files</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="cpuid64.asm">
|
||||
<Filter>Source Files</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -368,8 +368,8 @@
|
||||
<None Include="Readme.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Condition="'$(Platform)'=='x64'" Include="cpuid64.asm">
|
||||
<Message>Building and Assembling cpuid64.asm</Message>
|
||||
<CustomBuild Condition="'$(Platform)'=='x64' AND ('$(Configuration)'=='Debug' Or '$(Configuration)'=='Release')" Include="cpuid64.asm">
|
||||
<Message>Building and assembling cpuid64.asm</Message>
|
||||
<Command>ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)cpuid64.obj" "%(FullPath)"</Command>
|
||||
<Outputs>$(IntDir)cpuid64.obj;%(Outputs)</Outputs>
|
||||
</CustomBuild>
|
||||
|
Loading…
Reference in New Issue
Block a user