vote up 1 vote down star
1

Is there a key I can set in my application bundle to set what the working directory will be for the executable? It needs to be the $BUNDLE/Contents/MacOS directory (because of some library dependencies that do runtime loading that I can't easily modify).

I'm aware this can be done by wrapping with a script instead but I'd rather not.

flag

1 Answer

vote up 2 vote down check

No, there is not. However, you can just add an appropriate chdir() in your main() function before calling NSApplicationMain.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.