How to tell Xcode to actually install my personal library where it says it will, and then how to import it.

Hi, I've got a libary project that's just some code I frequently find useful. The project file says that Xcode will install it in /Library/Frameworks/ (which is where I want it), but it won't actually put it anywhere other than that obscure derived data folder. Is there any way to get Xcode to actually do what it says it's going to do? And the followup question is how do I then import it? I've tried adding the framework file (from that derived data directory) to that "Link Binary With Libraries" section, but when I #import <MyModuleName>, Xcode insists that it doesn't exist (and its not automatically importing it silently, either, of course).


Anyay, any thoughts? It's getting annoying to have 50 copies of all these files floating around, especially with most of them being kinda out of date.