Fix x64dll.asm ASM with ARM-based MSBuilds (Issue 316)

This commit is contained in:
Jeffrey Walton 2016-10-08 13:55:37 -04:00
parent 7c735f660f
commit d00be538c5
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -153,7 +153,6 @@
</PreBuildEvent> </PreBuildEvent>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<!-- DLL MAC'ing performed by cryptest.exe --> <!-- DLL MAC'ing performed by cryptest.exe -->
<ItemDefinitionGroup Label="DLL MAC"> <ItemDefinitionGroup Label="DLL MAC">
<PostBuildEvent> <PostBuildEvent>
@ -169,10 +168,10 @@
<!-- Original File with special treatment --> <!-- Original File with special treatment -->
<ItemGroup> <ItemGroup>
<CustomBuild Include="x64dll.asm"> <CustomBuild Condition="'$(Platform)'=='x64' AND ('$(Configuration)'=='Debug' Or '$(Configuration)'=='Release')" Include="x64dll.asm">
<ExcludedFromBuild Condition="'$(Platform)'=='Win32'">true</ExcludedFromBuild> <Message>Building and assembling x64dll.asm</Message>
<Command Condition="'$(Platform)'=='x64'">ml64.exe /c /nologo /D_M_X64 /W3 /Fo"$(IntDir)x64dll.obj" /Zi "%(FullPath)"</Command> <Command>ml64.exe /c /nologo /D_M_X64 /W3 /Zi /Fo"$(IntDir)x64dll.obj" "%(FullPath)"</Command>
<Outputs Condition="'$(Platform)'=='x64'">$(IntDir)x64dll.obj;%(Outputs)</Outputs> <Outputs>$(IntDir)x64dll.obj</Outputs>
</CustomBuild> </CustomBuild>
</ItemGroup> </ItemGroup>