I am just getting started with flex and am using the SDK (not Flex Builder). I was wondering what's the best way to compile a mxml file from an ant build script.
|
The Flex SDK ships with a set of ant tasks. More info at: http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_1.html Here is an example of compiling Flex SWCs with ant: http://www.mikechambers.com/blog/2006/05/19/example-using-ant-with-compc-to-compile-swcs/ mike chambers |
|||
|
|
I would definitely go with the ant tasks that are included with Flex, they make your build script so much cleaner. Here is a sample build script that will compile and then run your flex project
|
|||
|
|
|
There is another option - it's called Project Sprouts. This is a system built with Ruby, RubyGems and Rake that provides many of the features found in Maven and ANT, but with a much cleaner syntax and simpler build scripts. For example, the ANT script shown above would look like this in Sprouts:
After installing Ruby and RubyGems, you would simply call this script with:
To remove generated files, run:
To see available tasks:
Another great benefit of Sprouts, once installed, is that it provides project, class and test generators that will get any development box ready to run with a couple simple command line actions.
|
|||
|
|
If you're open to Maven, try the flex-compiler-mojo plugin: http://code.google.com/p/flex-mojos/ Christiaan |
|||
|
|