VHISTlib Installation Guide
Introduction
This document describes how to compile vhistlib on different platforms.
Prerequisites
A version of Qt 4.8 or later (http://qt-project.org/) is needed in order to compile VHISTlib. A version of zlib (http://www.zlib.net/) is needed as well.
Linux, Mac OS X 10.4 or later and Windows using MinGW
Execute the following commands from the commandline:
$ qmake CONFIG+=release
$ make
Make sure that the version of qmake
you are using belongs to your Qt 4
installation. You can inspect the Version of qmake by calling
qmake –version
. To build the debug version of the library, substitiute
the word release
by debug
in the commands above. The compiled version
of the library will be placed inside the bin/
directory of the VHISTlib
distribution.
Windows using MSVC++
Execute the following commands from the windows commandline:
$ qmake $ nmake /build Release
Make sure that qmake and nmake are located inside your path. To build the debug
version of the library, substitiute the word Release
by Debug
in the
commands above. The compiled version of the library will be placed inside the
bin
directory of the VHISTib
distribution.