flex config.xml src.
If your mxml file is named project.mxml , then the configuration file should be project-config.xml
This is the default name that will attempt to load both the built-in FlexBuilder compiler and the mxmlc command-line compiler.
Here is an example configuration file with only the specific entry you are asking about. However, all that you can add to the command line, which you can specify in the config.xml file.
<?xml version="1.0" encoding="UTF-8"?>
<flex-config>
<compiler append="true">
<include-libraries append="true">
<library>libs/myLibrary.swc</library>
</include-libraries>
</compiler>
</flex-config>
source
share