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!
            Asked
            
        
        
            Active
            
        
            Viewed 772 times
        
    1 Answers
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