Menu

[r2333]: / osmf / trunk / samples / ExamplePlayer / build.xml  Maximize  Restore  History

Download this file

38 lines (30 with data), 1.2 kB

 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
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<project name="OSMF.samples.ExamplePlayer" default="all" >
<property environment="env" />
<!-- load external values -->
<property name="properties.file" value="./build.properties"/>
<property file="${properties.file}" />
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
<taskdef resource="flexUnitTasks.tasks" classpath="${FLEX_UNIT_HOME}/flexUnitTasks-4.1.0-8.jar" />
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${buildtools.dir}/libs/ant-contrib-1.0b3.jar" />
<import file ="${buildtools.dir}/utils.xml" />
<!-- main -->
<target name="all">
<antcall target="clean-bin" />
<antcall target="build" />
</target>
<!-- cleans the output directory -->
<target name="clean-bin">
<sequential>
<delete includeemptydirs="true" quiet="true">
<fileset dir="${basedir}">
<include name="${output.bin}/**/*" />
</fileset>
</delete>
</sequential>
</target>
<!-- compile OSMF -->
<target name="build" depends="clean-bin" >
<OSMF.mxml.compile project="ExamplePlayer" projectDir="${basedir}" width="100%" height="100%" srcDir=""/>
</target>
</project>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.