Search code examples
c#macosmonomonomac

Where can I download compiled builds of MonoMac?


Miguel de Icaza announced a new project today called MonoMac, to develop apps for the Mac using Mono and C#: http://tirania.org/blog/archive/2010/Apr-19.html

In the post, he provides links to the subversion repositories, but are there any builds of it available for download?


Solution

  • There is no binary distribution yet. But you can build your own very quickly:

    • Download the Mono 2.6.4 Preview package
    • Checkout the maccore module svn co http://anonsvn.mono-project.com/source/trunk/maccore
    • Checkout the monomac module svn co http://anonsvn.mono-project.com/source/trunk/monomac
    • Go to the monomac folder, and type make
    • Et voilà !!!

    The sample application (found under monomac/samples/Hello) can be launched like a standard application.