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
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
First get XCode Developer tools and X11 installed from you Mac OSX install CD's or the Apple Website.

The following guide uses a quick, low overhead solution called 'Homebrew' to install Globulation 2 dependencies.

== Installing Homebrew ==

{{Message|Assumes fresh environment|The following guide assumes you are not using MacPorts or FinkCommander already. If you are, use them to install dependencies, or adjust the paths of the below commands.}}

{{Warning|Globulation 2 compiling|Globulation 2 scons script assumes the dependencies are in /opt/local on the mac. MacPorts uses this directory, but Fink does not. If you need to, symlink the directory. If you can't, edit SConstruct in the glob2 source}}

* Download and install the latest Git version:

http://code.google.com/p/git-osx-installer/downloads/list?can=3

* Run the following in a console:

$ mkdir /opt
$ cd /opt
$ git clone git://github.com/mxcl/homebrew.git local
$ chown -R [your_name]:[your_group] local '''(replace the bracket values)'''

== Adding PATH's ==

Open up ~/.profile (or sometimes called .bash_profile) in your favourite editor, and add at the top of the file:

export PATH=/opt/local/bin/:$PATH
export MANPATH=/opt/local/share/man:$MANPATH
export CPPFLAGS="-I/opt/local/include $CPPFLAGS"
export LDFLAGS="-L/opt/local/lib $LDFLAGS"

Save ~/.profile, Quit the Terminal.app program, and then restart it. Type

$ which brew

and hit enter. If the result is '/opt/local/bin/brew' then feel free to continue, else find out what's wrong.

== Handling Dependencies ==
== Handling Dependencies ==
The easiest way to get all dependencies installed and kept up to date with minimal effort is to use [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


With Homebrew installed, the PATH's in place, and the Terminal open, run:

$ brew install libpng
$ brew link libpng
$ brew install scons sdl sdl_ttf sdl_image sdl_net speex libvorbis libogg boost fribidi portaudio

== Compiling Globulation 2 ==

Mac support is very limited, so for now, you'll just need to play the game in the directory you compiled it. Assuming you have download Globulation 2 and extracted the source code (if not, see [[Download and Install]]), change into the directory with the console and run:

$ scons

If all goes well, it should build the glob2 binary at the end of the process. You can safely ignore all the warnings it gives.

== Before Running ==


Once compiled, you'll need to run the following at the Globulation 2 source root to get the game working. Not sure why this is necessary yet (sources indicate Globulation 2 source needs altering).
== on to glob2 itself and Mercurial ==
To checkout the source from Mercurial please [[Mercurial| see this page]]


$ ln -s /opt/local/lib/libboost_thread-mt.dylib




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

Latest revision as of 05:53, 23 October 2009

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

The following guide uses a quick, low overhead solution called 'Homebrew' to install Globulation 2 dependencies.

Installing Homebrew

Assumes fresh environment: The following guide assumes you are not using MacPorts or FinkCommander already. If you are, use them to install dependencies, or adjust the paths of the below commands.
Globulation 2 compiling: Globulation 2 scons script assumes the dependencies are in /opt/local on the mac. MacPorts uses this directory, but Fink does not. If you need to, symlink the directory. If you can't, edit SConstruct in the glob2 source
  • Download and install the latest Git version:
 http://code.google.com/p/git-osx-installer/downloads/list?can=3
  • Run the following in a console:
 $ mkdir /opt
 $ cd /opt
 $ git clone git://github.com/mxcl/homebrew.git local
 $ chown -R [your_name]:[your_group] local    (replace the bracket values)

Adding PATH's

Open up ~/.profile (or sometimes called .bash_profile) in your favourite editor, and add at the top of the file:

 export PATH=/opt/local/bin/:$PATH
 export MANPATH=/opt/local/share/man:$MANPATH
 export CPPFLAGS="-I/opt/local/include $CPPFLAGS"
 export LDFLAGS="-L/opt/local/lib $LDFLAGS"

Save ~/.profile, Quit the Terminal.app program, and then restart it. Type

 $ which brew

and hit enter. If the result is '/opt/local/bin/brew' then feel free to continue, else find out what's wrong.

Handling Dependencies

With Homebrew installed, the PATH's in place, and the Terminal open, run:

 $ brew install libpng
 $ brew link libpng
 $ brew install scons sdl sdl_ttf sdl_image sdl_net speex libvorbis libogg boost fribidi portaudio 

Compiling Globulation 2

Mac support is very limited, so for now, you'll just need to play the game in the directory you compiled it. Assuming you have download Globulation 2 and extracted the source code (if not, see Download and Install), change into the directory with the console and run:

 $ scons

If all goes well, it should build the glob2 binary at the end of the process. You can safely ignore all the warnings it gives.

Before Running

Once compiled, you'll need to run the following at the Globulation 2 source root to get the game working. Not sure why this is necessary yet (sources indicate Globulation 2 source needs altering).

 $ ln -s /opt/local/lib/libboost_thread-mt.dylib
Misc