Skip to content

Commit 1307121

Browse files
committed
commit
1 parent 675c36b commit 1307121

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

as3/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/build
2+
/dist

as3/src/build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<project default="all" basedir="../">
22

33
<property environment="env" />
4-
<property name="FLEX_HOME" value="${env.FLEX_HOME}"/>
54

65
<property name="package.name" value="qrcode-as3"/>
76

@@ -18,10 +17,10 @@
1817
<property name="build.as3" location="${build}/as3"/>
1918
<property name="build.asdoc" location="${build}/asdoc"/>
2019

21-
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/>
22-
2320
<target name="init">
24-
21+
<fail unless="env.FLEX_HOME" message="environment variable FLEX_HOME not set."/>
22+
<property name="FLEX_HOME" value="${env.FLEX_HOME}"/>
23+
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/>
2524
</target>
2625

2726
<target name="clean">
@@ -104,6 +103,7 @@
104103
</compiler.include-libraries>
105104
<default-background-color>#ffffff</default-background-color>
106105
<default-size width="200" height="200"/>
106+
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
107107
</mxmlc>
108108

109109
<mxmlc

0 commit comments

Comments
 (0)