How can I install Libigl lab on Windows Os?

867 Views Asked by At

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!

1

There are 1 best solutions below

0
On

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).