Re: Framework Installation Directory

2011-04-10 Thread Jerry Krinock
On Friday, April 8, 2011, Mr. Gecko grmrge...@gmail.com wrote: I need help with the Installation Directory for a framework that will be shared between a application and 2 daemons within side it. I think I may be able to do it if I were to have the 2 daemons executables in the MacOS path or

Re: Framework Installation Directory

2011-04-09 Thread Stephane Sudre
If you're not limited by the Mac App Store requirements (for 3rd party dev), another solution might be to install your framework in /Library/Frameworks. Of course, this would require an installation package. On Friday, April 8, 2011, Mr. Gecko grmrge...@gmail.com wrote: I need help with the

Re: Framework Installation Directory

2011-04-09 Thread Mr. Gecko
I try to stay away from Disk Images and Packages as they annoy users such as myself... I think the Symbolic link is what I'm doing, but thanks for the suggestion. On Apr 9, 2011, at 3:54 PM, Stephane Sudre wrote: If you're not limited by the Mac App Store requirements (for 3rd party dev),

Framework Installation Directory

2011-04-08 Thread Mr. Gecko
I need help with the Installation Directory for a framework that will be shared between a application and 2 daemons within side it. I think I may be able to do it if I were to have the 2 daemons executables in the MacOS path or another folder such as one named Daemons in the Contents folder. I

Re: Framework Installation Directory

2011-04-08 Thread Vyacheslav Karamov
08-Apr-11 15:53, Mr. Gecko пишет: I need help with the Installation Directory for a framework that will be shared between a application and 2 daemons within side it. I think I may be able to do it if I were to have the 2 daemons executables in the MacOS path or another folder such as one named

Re: Framework Installation Directory

2011-04-08 Thread Sherm Pendley
On Fri, Apr 8, 2011 at 8:53 AM, Mr. Gecko grmrge...@gmail.com wrote: I need help with the Installation Directory for a framework that will be shared between a application and 2 daemons within side it. I think I may be able to do it if I were to have the 2 daemons executables in the MacOS path

Re: Framework Installation Directory

2011-04-08 Thread Mr. Gecko
So basically once I've compiled the daemon, have it run a post script that will change the path to go back 4 directories instead of 1 if I was to place it in Contents/Daemon/Daemon.app/Contents/MacOS/Daemon? Thanks for the response, Mr. Gecko On Apr 8, 2011, at 8:48 AM, Sherm Pendley wrote:

Re: Framework Installation Directory

2011-04-08 Thread Sherm Pendley
Yeah, that's how I'd do it, add a run script build phase to the daemon target. sherm-- On Fri, Apr 8, 2011 at 9:57 AM, Mr. Gecko grmrge...@gmail.com wrote: So basically once I've compiled the daemon, have it run a post script that will change the path to go back 4 directories instead of 1 if

Re: Framework Installation Directory

2011-04-08 Thread Jean-Daniel Dupas
Or do a symlink of MyApp.app/Contents/Frameworks into your daemon Contents directory (using a build script too). cd Daemon.app/Contents/ ln -s ../../../Frameworks Frameworks (I didn't check the count of '..' so it may be wrong, but you get the idea). Yeah, that's how I'd do it, add a run

Re: Framework Installation Directory

2011-04-08 Thread Mr. Gecko
True, I forgot all about symbolic links. On Apr 8, 2011, at 10:05 AM, Jean-Daniel Dupas wrote: Or do a symlink of MyApp.app/Contents/Frameworks into your daemon Contents directory (using a build script too). cd Daemon.app/Contents/ ln -s ../../../Frameworks Frameworks (I didn't check

Re: Framework Installation Directory

2011-04-08 Thread Sherm Pendley
True! There's more than one way to skin that cat. :-) sherm-- On Fri, Apr 8, 2011 at 11:05 AM, Jean-Daniel Dupas devli...@shadowlab.org wrote: Or do a symlink of MyApp.app/Contents/Frameworks into your daemon Contents directory (using a build script too). cd Daemon.app/Contents/ ln -s

Re: Framework Installation Directory

2011-04-08 Thread Eric Wing
On 4/8/11, Vyacheslav Karamov ubuntul...@yandex.ru wrote: I'm not sure what you need exactly, but it hope it would be helpful for you http://www.dribin.org/dave/blog/archives/2009/11/15/rpath/ I agree with Vyacheslav. You should look at @rpath. -Eric -- Beginning iPhone Games Development