Distributing the C command-line tool in the OS X.app Bundle

I wrote a C command-line tool that uses GLUT to visualize a genetic algorithm, and I want to distribute it on the Mac OS X.app Bundle.

How should I do it? Are there any supporting tools for this?

Many thanks! Thomas

Edit: Thanks so much for your help, I didn't think it was that easy!

+3
source share
3 answers

Create a new xcode project with the "application" template. Add the source code to this project, compile and ... You have an application package. You only need to expand it (add frameworks). That's all.

+2
source

, Mac OS X IDE XCode.
, Package Maker.

( Maker - , .)

Package Maker . , ?

+1

You must link the library to the package to avoid problems. Look at the problem with Universal build, and not at the assembly of PPC and Intel.

0
source

Source: https://habr.com/ru/post/1782308/


All Articles