能否有人一步一步地说明如何安装此实验室?我正在使用libigl网站上的教程,但我真的不知道该怎么做。非常感谢!
答案 0 :(得分:1)
您看过example project page(尤其是GitHub of it)吗?对此表示歉意。
# 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
来自示例项目的GitHub页面。
如果发生问题CMake可以找到该库,我建议将该库指向示例项目CMakeLists(此处为related StackOverflow post)。