[flexcoders] Help with ant build file for Flex needed.

2007-12-10 Thread lytvynyuk
Here is a piece of my build file. I want application build it using
RSL. I don't have any clear direction what to do. Basically I want to
simulate Library path tab option Framework linkage in Eclipse. How can
I modify existent build script to achieve desired result?

---
 target name=build depends=clean
 mkdir dir=${dist.dir}/
 mxmlc file=isp_flex.mxml output=${DEPLOY_DIR}/isp_flex.swf
 actionscript-file-encoding=UTF-8
 services=res/services-config.xml
 context-root=ISP
 static-rsls=false
 locale=en_US as3=true optimize=true
 load-config
filename=${FLEX_HOME}/frameworks/flex-config.xml/
 source-path path-element=${FLEX_HOME}/frameworks/
 compiler.library-path dir=${FLEX_HOME}/frameworks
append=true
 include name=libs /
 include name=../bundles/{locale} /
 /compiler.library-path
 /mxmlc
 /target
---


static-rsls=false for mxmlc doesn't exist at all



[flexcoders] Help with ant build file for Flex needed.

2007-11-08 Thread lytvynyuk
Here is a piece of my build file. I want application build it using RSL.
I don't have any clear direction what to do. Basically I want to
simulate Library path tab option Framework linkage in Eclipse. How can I
modify existent build script to achieve desired result?

---
 target name=build depends=clean
 mkdir dir=${dist.dir}/
 mxmlc file=isp_flex.mxml output=${DEPLOY_DIR}/isp_flex.swf
 actionscript-file-encoding=UTF-8
 services=res/services-config.xml
 context-root=ISP
 static-rsls=false
 locale=en_US as3=true optimize=true
 load-config
filename=${FLEX_HOME}/frameworks/flex-config.xml/
 source-path path-element=${FLEX_HOME}/frameworks/
 compiler.library-path dir=${FLEX_HOME}/frameworks
append=true
 include name=libs /
 include name=../bundles/{locale} /
 /compiler.library-path
 /mxmlc
 /target
---