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
Line 
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
6CLIENT
7______
8
9OSX:
10
11Install MacPorts from https://guide.macports.org/chunked/installing.macports.html
12
13To install allegro, do the following steps in a separate directory:
14
15sudo port selfupdate
16sudo port upgrade outdated
17sudo port install zlib freetype jpeg libogg physfs libpng flac libtheora +universal
18// Don't think I need libtheora, don't include +universal for Mojave or higher
19git clone https://github.com/liballeg/allegro5.git allegro
20cd allegro
21mkdir build
22cd build
23cmake -DSHARED=0 ..
24make
25sudo make install
26
27Now, go to network-game/client and run:
28make
29./gameClient medievaltech.com 8000
30
31SERVER
32______
33
34coming soon
Note: See TracBrowser for help on using the repository browser.