如何在Windows OS上安装Libigl Lab?

时间:2019-02-15 16:28:10

标签: c++ c 3d libigl

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

1 个答案:

答案 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)。