Hi,
In my XCode project, I have multiple 'Executables'.
Is it possible to run some of them via Comomand line in a terminal? Instead of running it via 'Run->Debug'?
Thank you.
|
1
|
Hi, In my XCode project, I have multiple 'Executables'. Thank you.
|
||
|
|
|
|
Sure. If you are using the default settings, you'll find the binary in the If you have a shared build products location set via preferences, you'll find the binaries below there. Once you have located the binary, open up a Terminal window and run it just like any other command. For Cocoa applications, you'll need to specific the path into the app wrapper. Something like:
For example, my preferences are set to build everything into
And, sure enough, it spews:
|
||
|
|
|
|
You can also use the command "open MyApp.app" |
||
|
|