我可以一步一步举例说明如何安装此实验室吗?我正在使用libigl网站上的教程,但我真的不知道该怎么做。非常感谢!

最佳答案

您看到过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)。

关于c++ - 如何在Windows OS上安装Libigl Lab?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54713382/

10-14 18:40