Skip to content

Commit b7849fc

Browse files
committed
Flash: Avoid warning during build with mxmlc and output resulting swf file to js/ folder rather then to bin/
1 parent 5021b49 commit b7849fc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,17 @@
4949
<exec executable="mxmlc">
5050
<arg value="-compiler.source-path=./src/flash/plupload/src" />
5151
<arg value="-target-player=10.1.0" />
52+
<arg value="-static-link-runtime-shared-libraries=true" />
5253
<!-- <arg value="-compiler.debug" /> -->
53-
<arg value="-output=./bin/plupload.flash.swf" />
54+
<arg value="-output=./js/plupload.flash.swf" />
5455
<arg value="./src/flash/plupload/src/com/plupload/Plupload.as" />
5556
</exec>
5657
</target>
5758

5859
<target name="clean">
5960
<delete quiet="true">
6061
<fileset dir="js" includes="**/*">
61-
<exclude name="plupload.flash.swf"/>
62+
<!-- <exclude name="plupload.flash.swf"/> -->
6263
<exclude name="plupload.silverlight.xap"/>
6364
</fileset>
6465
</delete>

0 commit comments

Comments
 (0)