Is there a external-source-path option available in Flex compiler similar to external-library-path ?
My requirement is that, I am building a "SWC" file but I don't want to include certain folders inside my 'src' folder as these are anyway available in my other application during run time. (Trying to be resource constraint). So, I want to use these folders during compilation but do not want to include them in the generated "SWC" file.
-Ravi
There is no "exclude" option, unfortunately, but it is not required that you include the main src folder - you can specify all the subfolders you actually want to include using
-include-sources
.You could also use
-include-classes
or-include-file
to specify individual files. Check out this list of compiler options