INSTALL NOTES

If you want to build QtiPlot from sources, don't forget first to download and install the Qt, QwtPlot3D, GSL and zlib libraries. You must use the modified version of Qwt 4.2.0 which comes with the QtiPlot archive ("3rdparty" folder). This should be statically linked to QtiPlot in order to avoid conflicts on your operating system. The last version of the muParser (1.26 not oficially released yet) library is included in QtiPlot ("3rdparty/muParser" folder), as well as the liborigin library, so you don't need to download and install them. In order to build QtiPlot you also need qmake, that is official part of Qt 3.x.

Linux
QtiPlot distributes a binary Debian package and a RPM package for RadHat, Mandrake and SuSE distributions.
The RPM package was created on an Ubuntu distribution.
To install on Linux Debian: download the package file qtiplot_0.x.x_i386.deb, then login as "root" and type:
dpkg -i qtiplot_0.x.x_i386.deb
To install the RPM package: download the file qtiplot-0.x.x-1.i386.rpm, then login as "root" and type:
rpm -i qtiplot-0.x.x-1.i386.rpm

For all the other Linux distributions and for Mac OS X :
1) download the .tar.bz2 or the .zip archive and decompress it
2) open a terminal (console) window
3) go to the main folder of the decompressed archive
4) modify the 'qtiplot/qtiplot.pro' file in order to set the INCLUDEPATH and LIBS variables to point to the location of the zlib, GSL and QwtPlot3D libraries on your system (header files and dynamic lib files).
5) type "qmake"
6) type "make"
7) login as root and type "make install"
Windows
QtiPlot distributes a binary Windows package. To install:
1. Download the qtiplot-0.x.x.exe file.
2. Open a Windows Explorer, double click on 'qtiplot-0.x.x.exe' icon and follow the installation instructions.

If you want to compile the application from sources you need to purchase the Qt3 official book, that comes with a CD containing a non commercial version of Qt 3.2.1 or use the Q..3/ Windows Free Edition in order to build Qt3.
1. Download the qtiplot archive and unzip it.
2. Modify the 'qtiplot.pro' file in order to set the INCLUDEPATH variable to the 'include' directory of your local build of the WinGSL, zlib and QwtPlot3D libraries.
3. Modify the 'qtiplot.pro' file in order to set the LIBS variable, in the win32 section, to the actual directories of your local build of the WinGSL, zlib and QwtPlot3D libraries.
4. Open a MS-DOS command terminal, go to the 'qtiplot' folder and type:
qmake qtiplot.pro
5. Type:
a) For MSVC users: nmake
b) For MinGW users: mingw32-make
c) For Visual Studio users, qmake can also generate '.dsp' project files. All you need to do is type: qmake -tp vc qtiplot.pro
then open the 'qtiplot.dsp' file, go to the 'Build' menu and chose 'Set active configuration...'. Choose the "qtiplot-Win32 Release' project configuration and press OK. Press the 'F7' key to build the application.