******************************************
Windows systems (tested on windows 10)
******************************************

Simply execute VocalTractLab.exe

******************************************
Linux systems (tested on Ubuntu 20.04)
******************************************

The installation of wxWidgets-3.1.5 is required.
This can be done as follow:

	1) sudo apt install libgtk-3-dev libopenal-dev mesa-utils freeglut3-dev

	2) from https://github.com/wxWidgets/wxWidgets/releases, download wxWidgets-3.1.5.tar.bz2

	3) tar -xvf wxWidgets-3.1.5.tar.bz2

	4) cd wxWidgets-3.1.5

	5) mkdir linuxbuild

	6) cd linuxbuild

	7) ../configure --with-gtk --with-opengl

	8) make

	9) sudo make install

	10) sudo ldconfig

You may need to add execution rights to the binary file VocalTractLab:

	chmod +x VocalTractLab (at the location of VTL3D)

To run VTL3D, simply execute:

	./VocalTractLab

******************************************
******************************************
Compiling the sources
******************************************
******************************************

You need to install the libraries:
  - wxWidgets 3.1.5 (https://www.wxwidgets.org)
  - boost 1.71.0 (https://www.boost.org/)
  - CGAL 5.0 (https://www.cgal.org)
  - Eigen 3.3.9 (http://eigen.tuxfamily.org)

******************************************
Windows systems (tested on windows 10)
******************************************

With Visual Studio (tested with version 16.2.0)
Open the file "CMakeList.txt" contained in the folder "sources"
via "File", "open", "CMake".
Choose the configuration that you want (e.g. Realease x64)
and build the sources.

******************************************
Linux systems (tested on Ubuntu 20.04)
******************************************

On Debian based systems you can use apt-get to install 
the required libraries directly fom the repositories.

You may also need to install the development version of 
the packages and a C++ compiler (e.g. gcc).

In the sources folder run 

	cmake .
	make

