[flexcoders] Re: compiled swc and file sizes
So its basically the compiler that does the work. You can specify how you wish to include the libraries via the Project Properties which basically generates the compiler arguments for your project. --- In flexcoders@yahoogroups.com, dnk <[EMAIL PROTECTED]> wrote: > > By that, do you mean with the import statements in the AS itself, or > in the project properties? > > dnk > > > On 17-Apr-08, at 7:09 PM, Bjorn Schultheiss wrote: > > > depends how you link the swc to your project. > > > > compiler.include.libraries // will add the entire swc > > compiler.library.path // will only add what's used >
Re: [flexcoders] Re: compiled swc and file sizes
By that, do you mean with the import statements in the AS itself, or in the project properties? dnk On 17-Apr-08, at 7:09 PM, Bjorn Schultheiss wrote: depends how you link the swc to your project. compiler.include.libraries // will add the entire swc compiler.library.path // will only add what's used
[flexcoders] Re: compiled swc and file sizes
depends how you link the swc to your project. compiler.include.libraries // will add the entire swc compiler.library.path // will only add what's used --- In flexcoders@yahoogroups.com, dnk <[EMAIL PROTECTED]> wrote: > > I have been googling, and have not thus far found an answer > > If I create a custom Library which has various classes and components > and compile it out as a SWC. > > Now say I add that swc to my project and use say only one component, > and none of the others Would the compiled file size of my project > include that of all the components/classes in my library swc, or just > that of the part actually used from the SWC. > > Thanks! >