1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project=".\resources\install.targets" />
<Import Project=".\scribus\install.targets" />
<PropertyGroup>
<AfterBuildDependsOn>
$(AfterBuildDependsOn);
Install_root;
</AfterBuildDependsOn>
</PropertyGroup>
<Target Name="Install_root">
<Copy
SourceFiles="$(MSBuildThisFileDirectory)AUTHORS"
DestinationFolder="$(OutDir)\share\doc"
SkipUnchangedFiles="true"
/>
<Copy
SourceFiles="$(MSBuildThisFileDirectory)COPYING"
DestinationFolder="$(OutDir)\share\doc"
SkipUnchangedFiles="true"
/>
<Copy
SourceFiles="$(MSBuildThisFileDirectory)LINKS"
DestinationFolder="$(OutDir)\share\doc"
SkipUnchangedFiles="true"
/>
<Copy
SourceFiles="$(MSBuildThisFileDirectory)README"
DestinationFolder="$(OutDir)\share\doc"
SkipUnchangedFiles="true"
/>
<Copy
SourceFiles="$(MSBuildThisFileDirectory)TRANSLATION"
DestinationFolder="$(OutDir)\share\doc"
SkipUnchangedFiles="true"
/>
</Target>
</Project>
|