Replies: 1 comment
-
Yeah, definitely one of the endpoints for this tool is generating build scripts. Trying not to over complicate the v1 release though, so was thinking things like this might go into the next release. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To compile the application's SWF file, we're using
mxmlc
, with anmxmlc-config.xml
file loaded using-load-config mxmlc-config.xml
.The list of ANEs need to be included in this file under
<compiler><library-path>...
.I wrote a shell script for this but I thought maybe a better place to have this functionality would be in the
apm
tool itself. What about an option to generate a full mxmlc-config file from a template (same process as with the application-descriptor). A default template could be provided byapm
to make jumping into a new project easier.Below is our script, which is a little specific to how our project is organized, but just so you get the idea.
Beta Was this translation helpful? Give feedback.
All reactions