BuildingOnMac.wiki
changeset 88 460d92a9be10
parent 34 bb98d418d1e3
child 91 8fe945760f91
equal deleted inserted replaced
87:315a93b441d4 88:460d92a9be10
    29 If you want to compile server for hosting lan games, you need to download an Haskell compiler. We are going to use the Glasgow Haskell Compiler.
    29 If you want to compile server for hosting lan games, you need to download an Haskell compiler. We are going to use the Glasgow Haskell Compiler.
    30 
    30 
    31   * download the Haskell Platform and install both the GHC and Haskell Platform - http://lambda.galois.com/hp-tmp/2010.2.0.0/haskell-platform-2010.2.0.0.i386.dmg
    31   * download the Haskell Platform and install both the GHC and Haskell Platform - http://lambda.galois.com/hp-tmp/2010.2.0.0/haskell-platform-2010.2.0.0.i386.dmg
    32   * run `cabal update` to get an updated list of available libraries and install the necessary dependencies with
    32   * run `cabal update` to get an updated list of available libraries and install the necessary dependencies with
    33 {{{
    33 {{{
    34 sudo cabal install dataenc hslogger network-bytestring
    34 sudo cabal install dataenc hslogger network-bytestring utf8-string
    35 }}}
    35 }}}
    36   * then in the following cmake comand, remember to add `-DWITH_SERVER=1` or `-DBUNDLE`
    36   * then in the following cmake comand, remember to add `-DWITH_SERVER=1` or `-DBUNDLE`
    37 
    37 
    38 == Necessary Tools ==
    38 == Necessary Tools ==
    39 
    39