I have a complex Flash Builder workspace with 18 Flex library projects and one AS3 project, where there are many dependencies between them.
I created the ANT build.xml file for automatic assemblies, however I use the ANT task from Flash Builder itself:
<fb.exportReleaseBuild project="..." destdir="..." failonerror="true" />
This works, but it brings some disadvantages:
- no debug build
- Flash Builder must be installed (not available on Linux server).
So my question is : is there an easy way to rewrite this fb.exportReleaseBuild ANT task for small project tasks using mxmlc and compc ?
Each swc project has 4 other dependencies of swc and other external assets that must be linked for implementation.
source share