forked from denivip/osmf-hls-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
30 lines (23 loc) · 877 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="OSMFHLSPlugin" default="build" basedir=".">
<property environment="env" />
<!-- load external values -->
<property file="${basedir}/build.properties" />
<!-- main ant target -->
<target name="build">
<sequential>
<antcall target="compile.swc" />
<antcall target="compile.swf" />
<antcall target="compile.player" />
</sequential>
</target>
<target name="compile.swc">
<subant target="" inheritall="true" antfile="HLSPlugin/build.xml" buildpath="."/>
</target>
<target name="compile.swf">
<subant target="" inheritall="true" antfile="HLSDynamicPlugin/build.xml" buildpath="."/>
</target>
<target name="compile.player">
<subant target="" inheritall="true" antfile="HLSTestPlayer/build.xml" buildpath="."/>
</target>
</project>