-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.xml
58 lines (50 loc) · 2.39 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
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<project name="Scratch for latest Flash Player" default="all">
<!-- load LOCAL configuration properties file -->
<property file="local.properties" />
<!-- load previously defined configuration properties file -->
<property file="build.properties" />
<!-- include our custom macros -->
<include file="build-common.xml" />
<!-- 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" />
<!-- General tasks -->
<target name="all" depends="clean,compile-10.2,compile-11.6"/>
<target name="clean">
<delete dir="${DEPLOY_DIR}" />
</target>
<target name="info">
<git-commit-id outputproperty="scratchFlashCommitID"/>
<echo message="scratchFlashCommitID = ${scratchFlashCommitID}"/>
</target>
<!-- Build for Flash Player 10.2 -->
<target name="compile-10.2" depends="info">
<mxmlc file="${SRC_DIR}/Scratch.as" output="${DEPLOY_DIR}/ScratchFor10.2.swf"
target-player="10.2" swf-version="11" debug="false">
<source-path path-element="${SRC_DIR}" />
<library-path file="${LIBS_DIR}/as3corelib.swc" />
<library-path file="${LIBS_DIR}/blooddy_crypto.swc" />
<library-path file="${LIBS_DIR}/grabcut.swc" />
<library-path file="${FLEX_HOME}/frameworks/libs/framework.swc" />
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
<default-size width="800" height="600" />
<define name="SCRATCH::allow3d" value="false" />
<define name="SCRATCH::revision" value="'${scratchFlashCommitID}'"/>
</mxmlc>
</target>
<!-- Build for Flash Player 11.6 -->
<target name="compile-11.6" depends="info">
<mxmlc file="${SRC_DIR}/Scratch.as" output="${DEPLOY_DIR}/Scratch.swf"
target-player="11.6" swf-version="19" debug="false">
<source-path path-element="${SRC_DIR}" />
<library-path file="${LIBS_DIR}/as3corelib.swc" />
<library-path file="${LIBS_DIR}/blooddy_crypto.swc" />
<library-path file="${LIBS_DIR}/grabcut.swc" />
<library-path file="${FLEX_HOME}/frameworks/libs/framework.swc" />
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
<default-size width="800" height="600" />
<define name="SCRATCH::allow3d" value="true" />
<define name="SCRATCH::revision" value="'${scratchFlashCommitID}'"/>
</mxmlc>
</target>
</project>