deroko
June 22nd, 2008, 19:30
I've made build rule for x64 asm files compiled from msvc2008. I had to use asm x64 in my C code. Hope it will be usefull

Code:
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
Name="Masm64"
Version="8.00"
>
<Rules>
<CustomBuildRule
Name="masm64"
DisplayName="masm64"
CommandLine="ml64.exe /c /nologo $(InputName).asm"
Outputs=".\$(InputName).obj"
FileExtensions="*.asm"
ExecutionDescription="Assembling x64..."
ShowOnlyRuleProperties="false"
>
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>