-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.xml
More file actions
27 lines (21 loc) · 906 Bytes
/
Copy pathbuild.xml
File metadata and controls
27 lines (21 loc) · 906 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="wet-boew-multimedia-fallback" default="default" basedir=".">
<description>Multimedia Player Flash Fallback</description>
<property file="build.properties"/>
<import file="build-tasks.xml"/>
<target name="default" depends="clean,build" description="Performs a Clean and Build when calling ant without any target"></target>
<target name="build" description="" depends="-init, -build-flex" />
<target name="-init" depends="-check-flex-sdk">
<mkdir dir="${bin.release.dir}"/>
</target>
<target name="-build-flex">
<compc output="${bin.release.dir}/osmf-pseudostreaming.swc">
<load-config filename="${FLEX_HOME}/frameworks/air-config.xml"/>
<source-path path-element="${src.dir}"/>
<include-sources dir="${src.dir}" includes="*"/>
</compc>
</target>
<target name="clean">
<delete dir="${dist.dir}" />
</target>
</project>