Hi there... i have a swc library I have been developing for personal
use. I have thus far been just keeping my classes and components in
the root.
I used to run my compiler as so:
./compc -source-path /Users/me/Zend/workspaces/DefaultWorkspace/sgLib/
-output /Users/me/Desktop/sgLib.swc -include-classes class1 class2
class3
Now I want to organize everything in packages so that as it grows the
library is organized. So now I have my classes and components
organized in folders in my library project.
IE
root -->sgLib -->utils -->class1
-->components -->class2
-->class3
Now I am trying to compile and if i use my original CLI compile, i get
errors like:
Error: could not find source for class [classname].
So this makes sense (as i moved the files into packages).
Now how would i have to midify my CLI compile to include all classes
in the sgLib package?
Thanks!
DNK