-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
35 lines (28 loc) · 1.39 KB
/
build.xml
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
<project name="EbrcModelCommon" basedir=".">
<import file="${projectsDir}/WDK/build.xml" />
<import file="${projectsDir}/ReFlow/build.xml" />
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Installation oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="EbrcModelCommon-Installation" depends="WDK-Installation,
ReFlow-Installation,
EbrcModelCommon/DatasetPresenter-Installation,
EbrcModelCommon/Model-Installation">
<ant target="defaultProjectInstall">
<property name="project" value="EbrcModelCommon" />
</ant>
</target>
<!-- ooooooooooooooooooooooo Install Components ooooooooooooooooooooooo -->
<target name="EbrcModelCommon/Model-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="EbrcModelCommon" />
<property name="component" value="Model" />
</ant>
</target>
<target name="EbrcModelCommon/DatasetPresenter-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="EbrcModelCommon" />
<property name="component" value="DatasetPresenter" />
</ant>
</target>
</project>