Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The tools must be installed first

sudo

...

apt-get

...

install

...

\

...

     git gcc g++

...

make cmake

Then the libraries must be installed

sudo apt-get install \

    libxml2-dev libsdl2-dev libsdl2-image-dev qtbase5-dev libqt5webkit5-dev

You

 

o install these packages on Ubuntu, do the following:

sudo apt-get install \
git \
gcc \
g++ \
make \
libxml2-dev \
libsdl2-dev \
libsdl2-image-dev \
qtbase5-dev \
libqt5webkit5-dev

Building Corinthia

Not possible

Testing Corinthia

 Not possible

 

 

To install these packages on Ubuntu, do the following:

sudo apt-get install \
git \
gcc \
g++ \
make \
libxml2-dev \
libsdl2-dev \
libsdl2-image-dev \
qtbase5-dev \
libqt5webkit5-dev

In addition to the above, you also need a recent version of CMake. Some distributions (such as Ubuntu 14.04) currently ship with old versions; you need at least 3.1 to build Corinthia. Here's how to download & build the latest version from source:

wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
tar xvf cmake-3.2.2.tar.gz
cd cmake-3.2.2
./bootstrap
make
sudo make install

 

 

 

 

 

 

 

 

 

 

 

v

Building Corinthia

Not possible

Testing Corinthia

 Not possible

 


 


To check out and build the source, do the following:

...