If i have one application and one library, in my ant file that i have specified as the builder in the project settings for the application, am I supposed to set depends="library-build" or not?
I have the library specified as a dependency in the project properties, and it seems as if the library's build.xml file is being called automatically when I build the application, but I don't see how to get the application's build to wait till the library is done compiling. The alternative is to use depends="library-build" to make sure they happen in the correct order, but the only way I see to disable the application build from automatically triggering the library build is to remove the link in the project properties, but then will code references work in the editor?? How are people handling this?

