<path id="flex.lib.path">
<fileset dir="libs" includes="*.swc"/>
</path>
Hope that helps.
-- Daniel R. <dan...@neophi.com> [http://danielr.neophi.com/]
> --
> You received this message because you are subscribed to the Google Groups "Antennae Discussion" group.
> To post to this group, send email to antennae-...@googlegroups.com.
> To unsubscribe from this group, send email to antennae-discus...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/antennae-discussion?hl=en.
>
>
<path id="flex.lib.path">
<pathelement location="${PFPLibrary.swc}"/>
<fileset dir="libs" includes="*.swc"/>
</path>
Antennae is a set of best practices and helpful Ant targets and tasks
to make building AS3, Flex, and AIR projects easier. As it relies
heavily on Ant I'd strongly recommend the Ant User Manual for general
Ant syntax and concepts:
http://ant.apache.org/manual/index.html
For the intent behind Antennae the "Build Philosophy" section of the
README in the root of the distribution is a great place to start.
http://code.google.com/p/antennae/source/browse/trunk/Antennae/README.txt
-- Daniel R. <dan...@neophi.com> [http://danielr.neophi.com/]
<property name="project.flex.application" value="MyModule.as" />
-- Daniel R. <dan...@neophi.com> [http://danielr.neophi.com/]
For your main application, to generate the link report you would add
the following to its build.xml:
<property name="flex.compc.options"
value="-link-report=${build.generated.dir}/report.xml" />
Likewise to reference that link report in the module you'd probably
want to define a build-assets.xml file that references the generated
file:
<property name="flex.compc.options"
value="-load-externs=${application.link.report}" />
Alternatively you could use relative paths. Hopefully that gives you
an idea of the next steps.
-- Daniel R. <dan...@neophi.com> [http://danielr.neophi.com/]