boinc/win_build/boinc_finalize.targets

11 lines
481 B
Plaintext
Raw Normal View History

<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2021-02-21 23:21:21 +00:00
<Target Name="AfterBuild">
<ItemGroup>
<LOCALE Include="..\locale\**\*.*" />
<CERT Include="..\curl\ca-bundle.crt" />
</ItemGroup>
<Copy SourceFiles="@(LOCALE)" DestinationFolder="$(OutDir)\locale\%(RecursiveDir)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(CERT)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true" />
</Target>
2021-02-22 06:47:56 +00:00
</Project>