mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
Integrate Yasm assembling better in VC build
By not having it blindly run before the ClCompile target it won't be checked every time you choose to build a single file from the IDE. Instead it becomes a separate build stage of its own.
This commit is contained in:
parent
a0a6194a26
commit
719eff39b1
@ -55,9 +55,14 @@
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<BuildCompileTargets>
|
||||
YasmAssemble;
|
||||
$(BuildCompileTargets)
|
||||
</BuildCompileTargets>
|
||||
</PropertyGroup>
|
||||
<Target
|
||||
Name="Assemble"
|
||||
BeforeTargets="ClCompile"
|
||||
Name="YasmAssemble"
|
||||
Inputs="@(Yasm)"
|
||||
Outputs="$(AegisubObjectDir)\%(Yasm.Directory)%(Yasm.Filename).obj"
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user