Distributing a C command line tool in a OS X .app Bundle
问题 I wrote a C command line tool which uses GLUT to visualize a genetic algorithm and I want to distribute it in a Mac OS X .app Bundle. How do I do that? Are there any helper tools available for this? Thank you very much! Thomas Edit: Thank you very much for your help, I didn't think of it being that easy! 回答1: Create new xcode project, with "application" template. Add your source code to that project, compile and... You have app bundle. You need only to deploy it (add frameworks). Thats all.