C++ 如何在Windows操作系统上安装Libigl实验室?

C++ 如何在Windows操作系统上安装Libigl实验室?,c++,c,3d,libigl,C++,C,3d,Libigl,能举个例子一步一步地告诉我如何安装这个实验室吗?我正在使用libigl网站上的教程,我真的不知道该怎么做。非常感谢 你看到(尤其是)了吗?这是很好的解释 # Installing git clone https://github.com/libigl/libigl.git cd libigl/ git submodule update --init --recursive cd .. # Downloading example project git clone https://github

能举个例子一步一步地告诉我如何安装这个实验室吗?我正在使用libigl网站上的教程,我真的不知道该怎么做。非常感谢

你看到(尤其是)了吗?这是很好的解释

# 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(如下)中指出该库。

欢迎使用SO。本网站涉及编程问题,不支持安装程序,因此您的问题与主题无关。