File: install.targets

package info (click to toggle)
scribus-doc 1.5.6.1%2Bdfsg-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 59,640 kB
  • sloc: xml: 767; python: 157; makefile: 14
file content (25 lines) | stat: -rw-r--r-- 872 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
	<ItemGroup>
		<FilesToInstall_doc_de Include="$(MSBuildThisFileDirectory)*.css" />
		<FilesToInstall_doc_de Include="$(MSBuildThisFileDirectory)*.html" />
		<FilesToInstall_doc_de Include="$(MSBuildThisFileDirectory)*.xml" />
		<FilesToInstall_doc_de Include="$(MSBuildThisFileDirectory)*.xsl" />
	</ItemGroup>
	
	<PropertyGroup>
		<AfterBuildDependsOn>
			$(AfterBuildDependsOn);
			Install_doc_de;
		</AfterBuildDependsOn>
	</PropertyGroup>
	
	<Target Name="Install_doc_de">  
		<Copy  
			SourceFiles="@(FilesToInstall_doc_de)"  
			DestinationFiles="@(FilesToInstall_doc_de-&gt;'$(OutDir)\share\doc\de\%(Filename)%(Extension)')"
			SkipUnchangedFiles="true"
		/>  
	</Target>
	<Import Project="images\install.targets" />
</Project>