forked from charlessuh/ffdshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yasm.props
19 lines (19 loc) · 894 Bytes
/
yasm.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(yasmBeforeTargets)' == '' and '$(yasmAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<yasmBeforeTargets>Midl</yasmBeforeTargets>
<yasmAfterTargets>CustomBuild</yasmAfterTargets>
</PropertyGroup>
<PropertyGroup>
<yasmDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(yasmDependsOn)</yasmDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<yasm>
<CommandLineTemplate>yasm.cmd $(Platform) "%(RootDir)%(Directory)." "$(IntDir)%(Filename).obj" "%(FullPath)"</CommandLineTemplate>
<Outputs>$(IntDir)%(Filename).obj</Outputs>
<ExecutionDescription>YASM: Assembling %(FullPath)</ExecutionDescription>
</yasm>
</ItemDefinitionGroup>
</Project>