Project

General

Profile

Installation

Requirements

Glnemo2 compiles and runs fine on Linux, Windows and MacOSX platform. To compile the project, you need Nokia QT development library (qt > 4.5).

If you don't have Qt installed on your system, you can get it from here:
Go to http://qt-project.org/downloads to download QT, then get and install "Qt libraries" for your specific platform.

It's very important to have a good video card (GPU) with a fast opengl driver. Glnemo2 has been successfully tested on Nvidia and ATI GPU cards. If the installed OpenGL driver is not fully compatible with the requirement, it can also run in software mode.

Compilation

Check out that you have 'qmake' utility in your path ('qmake' is normally included with qt package, but on fedora9, for example , it is called qmake-qt4 since both qt3 and qt4 are still installed there). Change to 'glnemo2' directory and enter commands :

  • Linux and Windows
      qmake -recursive
      make
      
  • Mac OS X
      qmake -spec macx-g++ -recursive
      make
      
  • Linux with cmake (preferred)
    for linux only, if you have cmake package installed, you can try the following :
      cd build
      cmake ..
      make
      make install