Tuesday, July 9, 2013

Step-by-step for building OpenMesh library on Linux

1       Download and Install CMAKE

This step may be optional, to download and install cmake if not available or outdated, run the following command:
$sudo apt-get install cmake

2       Download and Compile OpenMesh Library

Openmesh library is used to store and visualize the 3D STL model, it can be downloaded from:

to compile it running the following command
$cd OpenMesh-2.3.1
$rm -rf build
$mkdir build
$cd build
$cmake .. -DCMAKE_BUILD_TYPE=Release
$make
$sudo make install

$sudo ldconfig -v

No comments:

Post a Comment