i am using mxmlc for building the flex projects using ant.how to use flex builder-> copy non embeded files to destination folder compiler option in ANT
views:
387answers:
1
A:
I'm not sure if this will help you out but when you check that option using flex builder it updates the .actionScriptProperties file:
<compiler additionalCompilerArguments="-locale en_US" copyDependentFiles="true">
<compilerSourcePath/>
</compiler>
setting the copyDependentFiles to true or false turns this on and off
You can all just copy the directory over but this doesn't remove the embedded files.
<copy todir="${SRC_DIR}/assets">
<fileset dir="${DEPLOY_DIR}">
</fileset>
</copy>
Shua
2009-07-20 15:10:56
i am not expecting this.i am asking how to use this copydependentfiles=true option in ant script
mike
2009-07-21 06:15:56