mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 03:39:05 +01:00
Initial commit with new directory structure.
This commit is contained in:
42
dependencies.xml
Normal file
42
dependencies.xml
Normal file
@@ -0,0 +1,42 @@
|
||||
<project name='dependencies' default='depend.all'>
|
||||
|
||||
<dirname property='depend.root' file='${ant.file.dependencies}'/>
|
||||
|
||||
<target name='depend.all' depends='depend.components, depend.ui'>
|
||||
</target>
|
||||
<target name='depend.api'>
|
||||
<ant dir='${depend.root}/api' inheritAll='false'/>
|
||||
</target>
|
||||
<target name='depend.components' depends='depend.api, depend.util'>
|
||||
<ant dir='${depend.root}/components' inheritAll='false'/>
|
||||
</target>
|
||||
<target name='depend.ui' depends='depend.api, depend.util'>
|
||||
<ant dir='${depend.root}/ui' inheritAll='false'/>
|
||||
</target>
|
||||
<target name='depend.util'>
|
||||
<ant dir='${depend.root}/util' inheritAll='false'/>
|
||||
</target>
|
||||
|
||||
<target name='depend-clean.all'
|
||||
depends='depend-clean.components, depend-clean.ui'>
|
||||
</target>
|
||||
<target name='depend-clean.api'>
|
||||
<ant dir='${depend.root}/api' target='clean'
|
||||
inheritAll='false'/>
|
||||
</target>
|
||||
<target name='depend-clean.components'
|
||||
depends='depend-clean.api, depend-clean.util'>
|
||||
<ant dir='${depend.root}/components' target='clean'
|
||||
inheritAll='false'/>
|
||||
</target>
|
||||
<target name='depend-clean.ui'
|
||||
depends='depend-clean.api, depend-clean.util'>
|
||||
<ant dir='${depend.root}/ui' target='clean'
|
||||
inheritAll='false'/>
|
||||
</target>
|
||||
<target name='depend-clean.util'>
|
||||
<ant dir='${depend.root}/util' target='clean'
|
||||
inheritAll='false'/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user