source: network-game/readme.txt@ 7f9b01c

Last change on this file since 7f9b01c was 7f9b01c, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Update the readme

  • Property mode set to 100644
File size: 810 bytes
RevLine 
[50643fa]1Building client on linux (tested in ubuntu)
2
3Build a static version of the allegro library
4http://ventilatorxor.wordpress.com/2011/08/07/linux-allegro5-static-linking-for-beginners/
5
[0065962]6CLIENT
7______
[aee34b9]8
[0065962]9OSX:
[aee34b9]10
[0065962]11Install MacPorts from https://guide.macports.org/chunked/installing.macports.html
[aee34b9]12
[7f9b01c]13To install allegro, do the following steps in a separate directory:
[aee34b9]14
[7f9b01c]15sudo port selfupdate
16sudo port upgrade outdated
[0065962]17sudo port install zlib freetype jpeg libogg physfs libpng flac libtheora +universal
[7f9b01c]18// Don't think I need libtheora, don't include +universal for Mojave or higher
[0065962]19git clone https://github.com/liballeg/allegro5.git allegro
20cd allegro
[7f9b01c]21mkdir build
[0065962]22cd build
[7f9b01c]23cmake -DSHARED=0 ..
[0065962]24make
25sudo make install
[aee34b9]26
[7f9b01c]27Now, go to network-game/client and run:
[0065962]28make
29./gameClient medievaltech.com 8000
[aee34b9]30
[0065962]31SERVER
[aee34b9]32______
33
[0065962]34coming soon
Note: See TracBrowser for help on using the repository browser.