visualboyadvance-m/project/vs2010_mfc/nasm.props

26 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-03-03 03:20:28 +00:00
<?xml version="1.0" encoding="utf-8"?>
2010-08-29 17:18:58 +00:00
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(NASMBeforeTargets)' == '' and '$(NASMAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<NASMBeforeTargets>Midl</NASMBeforeTargets>
<NASMAfterTargets>CustomBuild</NASMAfterTargets>
</PropertyGroup>
<PropertyGroup>
<NASMDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(NASMDependsOn)</NASMDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<NASM>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<DisableOrphanLabelsWarning>False</DisableOrphanLabelsWarning>
<GenerateDebugInfo>False</GenerateDebugInfo>
<ObjectFileName>$(IntDir)%(Filename).obj</ObjectFileName>
<Optimization>0</Optimization>
<ObjectFileFormat>8</ObjectFileFormat>
<ErrorReportingFormat>1</ErrorReportingFormat>
2013-03-03 03:20:28 +00:00
<CommandLineTemplate>"$(SolutionDir)..\..\..\dependencies\nasm.exe" [AllOptions] [AdditionalOptions] -- [inputs]</CommandLineTemplate>
2010-08-29 17:18:58 +00:00
<Outputs>%(ObjectFileName)</Outputs>
<ExecutionDescription>Assembling...</ExecutionDescription>
</NASM>
</ItemDefinitionGroup>
</Project>