BrunoLevy / geogram

a programming library with geometric algorithms
Other
1.84k stars 125 forks source link

Build on linux (documentation) #84

Closed rflamary closed 1 year ago

rflamary commented 1 year ago

Hello and thanks fro the imprssive library.

I has a few problems when building geogram from source on ubuntu 22.04 following the instructions from: https://github.com/BrunoLevy/geogram/wiki/compiling_Linux

First I had to change

$ sudo apt-get install cmake build-essential libX11-dev libxcb1-dev libxau-dev libxdmcp-dev 

by (x11 instead of X11)

$ sudo apt-get install cmake build-essential libx11-dev libxcb1-dev libxau-dev libxdmcp-dev 

Also I was also missign a few libraries to compilte the third party libraries. Here is the command lie to instalml them all

sudo apt-get install  libxi-dev libxcursor-dev libxinerama-dev libxrandr-dev 

After that everything worked perfectly