vsyasm.props 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup
  4. Condition="'$(YASMBeforeTargets)' == '' and '$(YASMAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
  5. <YASMBeforeTargets>Midl</YASMBeforeTargets>
  6. <YASMAfterTargets>CustomBuild</YASMAfterTargets>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <YASMDependsOn
  10. Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(YASMDependsOn)</YASMDependsOn>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <YasmPath Condition= "'$(YASMPATH)' == ''">$(SolutionDir)</YasmPath>
  14. </PropertyGroup>
  15. <ItemDefinitionGroup>
  16. <YASM>
  17. <Debug>False</Debug>
  18. <ObjectFile>$(IntDir)</ObjectFile>
  19. <PreProc>0</PreProc>
  20. <Parser>0</Parser>
  21. <CommandLineTemplate>$(YasmPath)libs\vsyasm.exe -Xvc -f $(Platform) [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
  22. <Outputs>%(ObjectFile)</Outputs>
  23. <ExecutionDescription>Assembling %(Filename)%(Extension)</ExecutionDescription>
  24. <ShowOnlyRuleProperties>false</ShowOnlyRuleProperties>
  25. </YASM>
  26. </ItemDefinitionGroup>
  27. </Project>