Free and Open Source real time strategy game with a new take on micro-management

Difference between revisions of "MAC OS X Development"

From Globulation2

Jump to: navigation, search
(Handling Dependencies)
Line 1: Line 1:
First get XCode Developer tools and X11 installed from you Mac OSX install CD's or the Apple Website.

== Handling Dependencies ==
== Handling Dependencies ==
The easiest way to get all dependencies installed and kept up to date with minimal effort is to use [http://www.finkproject.org fink]. To get all the dependencies install glob2 from fink. Fink will take care of getting all the dependencies installed for you. At this point you can leave glob2 installed or not, doesn't really matter


The easiest way to get all dependencies installed and kept up to date with minimal effort is to use [http://www.finkproject.org fink]. Install Fink as per their websites instructions and then run:
== on to glob2 itself and Mercurial ==

To checkout the source from Mercurial please [[Mercurial| see this page]]
sudo fink install sdl-image sdl-net sdl-ttf libvorbis libvorbis0 libogg boost1.33 frididi-dev

You should now have all but two of the dependencies (speex and portaudio). Go to the http://www.speex.org/downloads/ and http://www.portaudio.com/download.html pages and grab the latest stable release (1.0.5 for speex and v19_20071207 for portaudio) at the time of writing this). Extract and run for both:


./configure && make && sudo make install


== Compiling Globulation 2 ==
Now carry on with compilation like normal. See http://globulation2.org/wiki/Compiling#Compile_from_Sources


[[Category:Developer Resources]]
[[Category:Developer Resources]]

Revision as of 04:45, 29 December 2008

First get XCode Developer tools and X11 installed from you Mac OSX install CD's or the Apple Website.

Handling Dependencies

The easiest way to get all dependencies installed and kept up to date with minimal effort is to use fink. Install Fink as per their websites instructions and then run:

 sudo fink install sdl-image sdl-net sdl-ttf libvorbis libvorbis0 libogg boost1.33 frididi-dev

You should now have all but two of the dependencies (speex and portaudio). Go to the http://www.speex.org/downloads/ and http://www.portaudio.com/download.html pages and grab the latest stable release (1.0.5 for speex and v19_20071207 for portaudio) at the time of writing this). Extract and run for both:

 ./configure && make && sudo make install

Compiling Globulation 2

Now carry on with compilation like normal. See http://globulation2.org/wiki/Compiling#Compile_from_Sources

Misc