-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
executable file
·50 lines (43 loc) · 2.04 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<project name="Scratch for latest Flash Player" default="compile">
<!-- load LOCAL configuration properties file -->
<property file="local.properties" />
<!-- load previously defined configuration properties file -->
<property file="build.properties" />
<!-- points to our flexTasks.jar we copied to the libs folder to distribute with the project -->
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
<!-- delete and create the DEPLOY dir again -->
<target name="init">
<delete dir="${DEPLOY_DIR}" />
<mkdir dir="${DEPLOY_DIR}" />
</target>
<!-- Build for Flash Player 10.2 -->
<target name="test_10.2" depends="init">
<mxmlc file="${SRC_DIR}/Scratch.as" output="${DEPLOY_DIR}/ScratchFor10.2.swf"
target-player="11.4" swf-version="11" debug="false">
<source-path path-element="${SRC_DIR}" />
<library-path file="${LIBS_DIR}/blooddy_crypto.swc" />
<library-path file="${FLEX_HOME}/frameworks/libs/framework.swc" />
<!--
<library-path file="${FLEX_HOME}/frameworks/libs/spark.swc" />
<library-path file="${FLEX_HOME}/frameworks/locale/en_US/mx_rb.swc" />
-->
<library-path file="${FLEX_HOME}/frameworks/libs/mx/mx.swc" />
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
<default-size width="800" height="600" />
<define name="SCRATCH::allow3d" value="false" />
</mxmlc>
</target>
<!-- Build and output Scratch.swf-->
<target name="compile" depends="test_10.2,init">
<mxmlc file="${SRC_DIR}/Scratch.as" output="${DEPLOY_DIR}/Scratch.swf"
target-player="11.4" swf-version="17" debug="false">
<source-path path-element="${SRC_DIR}" />
<library-path file="${LIBS_DIR}/blooddy_crypto.swc" />
<library-path file="${FLEX_HOME}/frameworks/libs/framework.swc" />
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
<default-size width="1800" height="1600" />
<define name="SCRATCH::allow3d" value="true" />
</mxmlc>
</target>
</project>