mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 11:07:12 +02:00
13 lines
647 B
XML
13 lines
647 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
|
|
<PropertyGroup>
|
|
<RobustToolsPath>$(MSBuildThisFileDirectory)/../Tools/</RobustToolsPath>
|
|
</PropertyGroup>
|
|
<Target Name="CopyClientNatives">
|
|
<CombinePath BasePath="$(RobustToolsPath)" Paths="download_natives.py">
|
|
<Output TaskParameter="CombinedPaths" PropertyName="ScriptPath" />
|
|
</CombinePath>
|
|
<Exec Command="$(Python) "$(ScriptPath)" $(Platform) $(TargetOS) Client $(OutputPath)" CustomErrorRegularExpression="^Error" />
|
|
</Target>
|
|
<Target Name="ClientAfterBuild" DependsOnTargets="CopyClientNatives" />
|
|
</Project>
|