Last change
on this file was 7f9b01c, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 6 years ago |
Update the readme
|
-
Property mode
set to
100644
|
File size:
810 bytes
|
Line | |
---|
1 | Building client on linux (tested in ubuntu)
|
---|
2 |
|
---|
3 | Build a static version of the allegro library
|
---|
4 | http://ventilatorxor.wordpress.com/2011/08/07/linux-allegro5-static-linking-for-beginners/
|
---|
5 |
|
---|
6 | CLIENT
|
---|
7 | ______
|
---|
8 |
|
---|
9 | OSX:
|
---|
10 |
|
---|
11 | Install MacPorts from https://guide.macports.org/chunked/installing.macports.html
|
---|
12 |
|
---|
13 | To install allegro, do the following steps in a separate directory:
|
---|
14 |
|
---|
15 | sudo port selfupdate
|
---|
16 | sudo port upgrade outdated
|
---|
17 | sudo 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
|
---|
19 | git clone https://github.com/liballeg/allegro5.git allegro
|
---|
20 | cd allegro
|
---|
21 | mkdir build
|
---|
22 | cd build
|
---|
23 | cmake -DSHARED=0 ..
|
---|
24 | make
|
---|
25 | sudo make install
|
---|
26 |
|
---|
27 | Now, go to network-game/client and run:
|
---|
28 | make
|
---|
29 | ./gameClient medievaltech.com 8000
|
---|
30 |
|
---|
31 | SERVER
|
---|
32 | ______
|
---|
33 |
|
---|
34 | coming soon
|
---|
Note:
See
TracBrowser
for help on using the repository browser.