Paolo Cignoni cignoni 5f787309ea Updated the basecode to the last changes of the VCG library
- UpdateNormals -> UpdateNormal
- Reduced the number of needed includes of the vcg library
- Increasing the use of MeshModel->UpdateBoxAndNormal() instead of directly calling both the base functions...
2012-10-15 14:07:07 +00:00
..
2012-09-13 09:59:19 +00:00
2012-08-03 10:13:03 +00:00

Compiling MeshLab
Note:
Some plugins of MeshLab invokes functions exported by external libraries. You have to compile these libraries before attempting to compile the whole MeshLab's code. 

To compile MeshLab and all MeshLab plugins:
First compile the needed external libraries 

cd MESHLAB_DIRECTORY/src/external
qmake -recursive external.pro
make

then compile MeshLab and its plugins
cd MESHLAB_DIRECTORY/src/
qmake -recursive meshlab_full.pro
make

Alternatively you can directly compile only a subset of the whole meshlab by using the meshlab_mini.pro. This minimal subset does not require any external library (give a look at the .pro itself for more info).

cd MESHLAB_DIRECTORY/src/
qmake -recursive meshlab_mini.pro
make




For more complete info, please, refer to the meshlab wiki:
 http://meshlab.sourceforge.net/wiki/index.php/Compiling#Compiling