-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathINSTALL
40 lines (27 loc) · 925 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
UBUNTU
Following requirements are needed for compiling the source:
sudo apt-get install cmake libglu1-mesa-dev zlib1g-dev \
libboost-iostreams1.42-dev
You will also need the git version of sfml. You can install it by doing
following:
sudo apt-get install libfreetype6-dev libglew1.5-dev libjpeg8-dev \
libopenal-dev libsndfile1-dev libxrandr-dev
git clone https://github.com/LaurentGomila/SFML.git
cd SFML
mkdir build
cd build
cmake ../
make
sudo make install
Before you can compile the project you need to check out its submodules.
cd freeaoe
git submodule init
git submodule update
To compile the project create a build dir, run cmake and make
mkdir build
cd build
cmake ../
make
to run the engine a directory called "aoe2" with the Age of empires 2 +
expansion (and patch) is needed in the build directory. This can later be
changed if config files will be implemented.