I would like to embed a command-line executable in my Xcode/Cocoa project, to then start it with NSTask. Which path should I use in the setLaunchPath ?

Thanks !

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

you should add it to your resources folder. Then, in runtime, read the app's resource bundle path, and append the name of the executable (including subfolders if you add it to a folder inside the resource bundle)

For instance:

NSString *execPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"binaryname"] 

NSTask *task = [[NSTask alloc] init];

[task setLaunchPath: execPath];
link|improve this answer
It worked, thanks ! – Laurent Crivello Feb 5 at 17:12
feedback

Your Answer

 
or
required, but never shown

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