I am trying to use and and compc to compile my swc. However, compc
only takes a list of files and not a directory. So I did something
like this hoping it would work:
<compc output="framework.swc">
<include-sources dir="${FRAMEWORK_ROOT}"
includes="**/*.as **/*.mxml" />
<source-path path-element="${FRAMEWORK_ROOT}"/>
</compc>
However it seems that there is a maximum number of *.as or *.mxml
files that can be passed in to the compc command. So from my research
it seems that I need to create a manifest file. But how would I
automate the creation of the manifest file? I dont want to update it
each time I create a new file. I am not too familiar with ant so any
guidance would help.
Thanks