2

Can some one example me step by step how to install this lab? I`m using tutorial from the libigl website and I dont really understand what to do. Thanks a lot!

Jasam
  • 21
  • 1
  • 1
    Welcome to SO. This website relates to programming problems, it is not a support to install programs and your question is thus quite off-topic. – xiawi Feb 15 '19 at 16:39

1 Answers1

1

Did you seen example project page (and especially GitHub of it)? It is well exaplained.

# Installing 
git clone https://github.com/libigl/libigl.git
cd libigl/
git submodule update --init --recursive
cd ..

# Downloading example project
git clone https://github.com/libigl/libigl-example-project.git
cd libigl-example-project/

# Building the project
mkdir build
cd build
cmake ..
make

Taken from GitHub page of example project.

If you occur problem CMake could found the library, I suggest to point the library in example project CMakeLists (here is related StackOverflow post).

AgainPsychoX
  • 1,527
  • 1
  • 16
  • 20