0

On the mxmlc command line, I can include paths to RSL files. I can choose to link these RSLs at runtime by setting

-static-link-runtime-shared-libraries=false

What if I need to link to some rsls and embed (static-link) other rsls? Is there a way to set the link settings for each rsl?

jedierikb
  • 12,752
  • 22
  • 95
  • 166

1 Answers1

1

in a flex config file:

<compiler.include-libraries dir="C:\rsls\" append="true">
    <library name="yrCoolLibrary.swc" />
</compiler.include-libraries>

command line (via ant):

<arg line="-compiler.include-libraries C:\rsls\yrCoolLibrary.swc"/>
jedierikb
  • 12,752
  • 22
  • 95
  • 166