Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

like image 680
tfeldmann Avatar asked Oct 22 '25 22:10

tfeldmann


1 Answers

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.

like image 60
Kamil Klimek Avatar answered Oct 27 '25 01:10

Kamil Klimek