I have a complex Flash Builder workspace with 18 Flex Library projects and 1 AS3 application project, where there are many dependencies between them.
I've created an ANT build.xml file for automatic builds, however I use ANT task from Flash Builder itself:
<fb.exportReleaseBuild project="..." destdir="..." failonerror="true" />
It works, but it brings some disadvantages:
- no debug build
- Flash Builder needs to be installed (not available on Linux server)
So my question: Is there an easy way how to rewrite this fb.exportReleaseBuild ANT task to little tasks by project with mxmlc
and compc
?
Each swc project has like 4 other swc dependencies and other external assets that needs to be linked for embedding.