LiangliangNan / PolyFit

Polygonal Surface Reconstruction from Point Clouds
https://3d.bk.tudelft.nl/liangliang/publications/2017/polyfit/polyfit.html
GNU General Public License v3.0
723 stars 121 forks source link

:-1: error: cannot find -lgurobi_stdc++ #5

Closed pisuto closed 6 years ago

pisuto commented 6 years ago

Hello,

when i compile the project under ubuntu14.04 Qt5.11.1, i meet a problem. it has an error "cannot find -lgurobi_stdc++". So does it mean i need to install another lib "gurobi"?

LiangliangNan commented 6 years ago

Hi,

The error says the Gurobi library is not visible to the IDE (compiler). To compile with Gurobi, you need to modify that path to point to your Gurobi library.

If you don't have Gurobi installed, you can also switch to the open source SCIP solver by commenting out everything related to Gurobi. SCIP is just slower than Gurobi (but acceptable).

Let me how it works. -- Liangliang