-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (22 loc) · 795 Bytes
/
build.xml
File metadata and controls
25 lines (22 loc) · 795 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
<?xml version="1.0" encoding="utf-8"?>
<project name="TwStreamFlash" basedir="." default="build">
<property name="FLEX_HOME" value="/usr/local/flex"/>
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
<target name="build">
<mkdir dir="generated"/>
<mxmlc
file="src/flash/TwStreamFlash.as"
output="generated/TwStreamFlash.swf"
static-link-runtime-shared-libraries="true"
debug="false">
<default-size width="1" height="1"/>
</mxmlc>
<copy file="src/html/test.html" todir="generated"/>
<copy todir="generated">
<fileset dir="lib/js"/>
</copy>
</target>
<target name="clean">
<delete dir="generated"/>
</target>
</project>