-
Notifications
You must be signed in to change notification settings - Fork 0
/
masm.props
23 lines (23 loc) · 1.15 KB
/
masm.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(MASMBeforeTargets)' == '' and '$(MASMAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<MASMBeforeTargets>Midl</MASMBeforeTargets>
<MASMAfterTargets>CustomBuild</MASMAfterTargets>
</PropertyGroup>
<ItemDefinitionGroup>
<MASM>
<NoLogo>true</NoLogo>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ObjectFileName>$(IntDir)%(FileName).obj</ObjectFileName>
<PreserveIdentifierCase>0</PreserveIdentifierCase>
<WarningLevel>3</WarningLevel>
<PackAlignmentBoundary>0</PackAlignmentBoundary>
<CallingConvention>0</CallingConvention>
<CommandLineTemplate Condition="'$(Platform)' == 'Win32'">"$(ProjectDir)masm6.15\ml.exe" /c [AllOptions] [AdditionalOptions] /Ta[Inputs]</CommandLineTemplate>
<CommandLineTemplate Condition="'$(Platform)' != 'Win32'">echo MASM not supported on this platform
exit 1</CommandLineTemplate>
<ExecutionDescription>Assembling %(Identity)...</ExecutionDescription>
</MASM>
</ItemDefinitionGroup>
</Project>